]> git.nbdom.net Git - nb.git/commitdiff
noexpandtab per type
authorNicolas Boisselier <nicolas.boisselier@gmail.com>
Sat, 26 Mar 2016 16:41:21 +0000 (16:41 +0000)
committerNicolas Boisselier <nicolas.boisselier@gmail.com>
Sat, 26 Mar 2016 16:41:21 +0000 (16:41 +0000)
etc/vim/source/option.vim

index daf1d86b1fd9f7a636fdec2ffdd8787e088ca03b..7c93f8ef07d9c7c5ef3d1d05d330027e99678bc7 100644 (file)
@@ -17,15 +17,6 @@ endif
 
 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 set history=1000
-"                                              *'history'* *'hi'*
-"'history' 'hi'                number  (Vim default: 20, Vi default: 0)
-"                      global
-"                      {not in Vi}
-"      A history of ":" commands, and a history of previous search patterns
-"      are remembered.  This option decides how many entries may be stored in
-"      each of these histories (see |cmdline-editing|).
-"      NOTE: This option is set to the Vi default value when 'compatible' is
-"      set and to the Vim default value when 'compatible' is reset.
 
 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 " Sell
@@ -57,28 +48,18 @@ set indentkeys=
 set wildmenu
 
 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
+set autoindent
 set expandtab
 set smarttab
 set tabstop=2
 set shiftwidth=2
 set softtabstop=2
-
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-set autoindent
-
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 set backspace=2
+autocmd filetype make setlocal noexpandtab
 
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 " set textwidth=79
-
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 set nobackup
-
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 set nohlsearch
-
-""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 set noincsearch
 
 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""