etc
vim setting
MongTae
2022. 5. 31. 15:12
본인 계정의 사용자 홈 디렉터리(~)에서, .vimrc 파일에 다음 구문을 추가합니다(vi .vimrc)
set hlsearch
set nu
set autoindent
set scrolloff=2
set wildmode=longest,list
set ts=4
set sts=4
set sw=1
set autowrite
set autoread
set cindent
set bs=eol,start,indent
set laststatus=2
set shiftwidth=4
set showmatch
set smartcase
set smarttab
set smartindent
set softtabstop=4
set tabstop=4
set ruler
set incsearch
if has("syntax")
syntax on
endif