Last active
December 25, 2015 01:19
-
-
Save siddontang/6894528 to your computer and use it in GitHub Desktop.
my vim config
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 smartindent | |
set tabstop=4 | |
set shiftwidth=4 | |
"set expandtab | |
set softtabstop=4 | |
syntax on | |
filetype plugin on | |
autocmd FileType * set expandtab | |
autocmd FileType make set noexpandtab | |
"search ignore case | |
set ignorecase | |
set showmatch | |
"no vi mode compability | |
set nocp | |
set backspace=indent,eol,start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment