Created
December 21, 2020 01:19
-
-
Save kokospapa8/dc05c2b6cc81b6584de2c5fd1ee69427 to your computer and use it in GitHub Desktop.
vimrc conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set hls ic is nu noswf | |
| set hlsearch " 모든 검색결과 하이라이트 | |
| set ignorecase " 대소문자 무시하고 검색 | |
| set incsearch " 타이핑할 때마다 검색 결과 표시 | |
| set number " 줄번호 표시 | |
| set noswapfile " 스왑파일 사용안함 | |
| set smartcase | |
| set list listchars+=space:• " 빈칸을 • 로 표시 | |
| set listchars=tab:>- " 탭을 >- 로 | |
| set listchars=tab:├─ | |
| set listchars+=trail:⋄ " 뒤 공백을 ⋄ 로 | |
| command Wq wq | |
| command WQ wq | |
| command W w | |
| command Q q | |
| nnoremap Q <nop> | |
| map <F1> <Esc> | |
| imap <F1> <Esc> | |
| # https://news.ycombinator.com/item?id=25410390 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment