diff options
Diffstat (limited to 'vimrc')
| -rw-r--r-- | vimrc | 13 | 
1 files changed, 13 insertions, 0 deletions
| @@ -98,6 +98,10 @@  "       * Change status bar colour from white to green when switching into and   "         out of insert mode  " +"   2014.05.02: +"       * Add augroup for filetype indentation settings +"       * Set gitcommit files to use 2-space indentation +"  " Pathogen @@ -397,6 +401,15 @@ augroup filetype_syntax_highlighting  augroup END +" Indentation rules by file type +augroup filetype_indentation +	autocmd! +	 +	" git commit messages +	autocmd FileType gitcommit setlocal expandtab tabstop=2 softtabstop=2 shiftwidth=2 +augroup END + +  " Project Settings  " ================ | 
