Created
September 4, 2017 05:42
-
-
Save yingray/7f794521f265049f72868cb157d0fba4 to your computer and use it in GitHub Desktop.
My vim configuration
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
" Powerline for Vim | |
set rtp+=/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/powerline/bindings/vim/ | |
set laststatus=2 | |
set t_Co=256 | |
" 顯示列號 | |
set number | |
" 語法高亮度顯示 | |
syntax on | |
" 標記搜尋到的字串 | |
set hlsearch | |
" 自動縮排 | |
set autoindent | |
" 顯示說明 | |
set ruler | |
" 顯示編輯狀態 | |
set showmode | |
" 設定註解的顏色 | |
" highlight Comment ctermfg=cyan | |
" 設定搜尋到的字串顏色 | |
highlight Search term=reverse ctermbg=4 ctermfg=7 | |
" 設定 tab 鍵的字元數 | |
set tabstop=4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment