메뉴 건너뛰기

Korea Oracle User Group

OS

vi 에디터 환경 설정 확인 및 설정

 

:set all 을 통해서 환경 설정을 파악할 수 있다.

 

:set all
noautoindent        mesg                                noslowopen
autoprint           nomodelines                         tabstop=8
noautowrite         nonumber                            taglength=0
nobeautify          nonovice                            tags=tags /usr/lib/tags
directory=/tmp      nooptimize                          tagstack
nodoubleescape      paragraphs=IPLPPPQPP LIpplpipnpbp   term=vt100
noedcompatible      prompt                              noterse
noerrorbells        noreadonly                          timeout
noexrc              redraw                              timeoutlen=500
flash               remap                               ttytype=vt100
hardtabs=8          report=5                            warn
noignorecase        scroll=31                           window=63
keyboardedit        sections=NHSHH HUuhsh+c             wrapscan
keyboardedit!       shell=/usr/bin/ksh                  wrapmargin=0
nolisp              shiftwidth=8                        nowriteany
nolist              noshowmatch
magic               noshowmode
[Hit return to continue]

 

:set option 을 통해서 환경 설정을 변경할 수 있다.
:set nooption을 통해서 환경 설정을 끌 수 있다.

 

vi 환경 저장

 

사용자 홈 디렉토리에 .exrc 파일에 환경 설정을 저장해 놓으면 vi 사용시 환경이 로딩이 된다.

 

set showmatch
set autoindent
set showmode
set number

 

 

위와 같이 설정을 해 주면 vi 수행시 설정해 놓은 환경이 로딩된다

 

 

 

위로