vim setting

2022. 5. 31. 15:12etc

본인 계정의 사용자 홈 디렉터리(~)에서,  .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

'etc' 카테고리의 다른 글

Git, Github 연결 및 사용법  (0) 2022.07.14
Git & Branch  (0) 2022.07.04
[Git 설치 및 초기설정, Git 명령어] Git으로 버전 관리하기  (0) 2022.06.28