현재 사용중인 설정 저장용 포스트.
if has("syntax")
syntax on
endif
"basic
set nu "show line number
set ruler "show cursor location info on status line
"tab
set ts=2 "number of spaces <Tab> in file uses
set sts=2 "number of space <Tab> uses while editing
set expandtab "tab to space
set laststatus=2 "show status line
set showmatch "highlights parentheses pairs
"indent
set smarttab "erase space indent with tab consideration
set smartindent "auto indent for next line considering language
set autoindent "auto indent for next line
"encoding
set encoding=utf-8 "output encoding that is shown in the terminal
set fileencodings=utf-8 "output encoding for file writes
"search
set ignorecase "ignore case for search
set smartcase "case sensitive search if case different
set hlsearch "highlight search match
'개발공부 > General' 카테고리의 다른 글
[Mac] 터미널 세팅하기 (0) | 2022.04.12 |
---|