Last active
April 26, 2018 22:34
-
-
Save yuchsiao/f9e8d627322b3c2dc4cb287d78a44100 to your computer and use it in GitHub Desktop.
vim config with programming tab
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
syntax on | |
set t_Co=256 | |
"colorscheme SerialExperimentsLain | |
"https://github.com/nanotech/jellybeans.vim | |
colorscheme jellybeans | |
filetype plugin indent on | |
" show existing tab with 4 spaces width | |
set tabstop=4 | |
" when indenting with '>', use 4 spaces width | |
set shiftwidth=4 | |
" On pressing tab, insert 4 spaces | |
set expandtab | |
set hlsearch | |
hi Search guibg=Yellow guifg=Black ctermbg=Yellow ctermfg=Black |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment