diff options
author | Ekaitz Zárraga <ekaitz.zarraga@fon.com> | 2016-03-29 13:54:05 +0200 |
---|---|---|
committer | Ekaitz Zárraga <ekaitz.zarraga@fon.com> | 2016-03-29 13:54:05 +0200 |
commit | d853c4ce415e50b5c2b378495e064ab7c8cc65ce (patch) | |
tree | 29aeb46c555d573c77947aa2fcd484113bf85a49 /vim | |
parent | c49a03ac5c3555acad506158fce70e4b2a01db52 (diff) |
Expandtab +
Diffstat (limited to 'vim')
-rw-r--r-- | vim/.vim/ftplugin/c.vim | 2 | ||||
-rw-r--r-- | vim/.vim/ftplugin/groovy.vim | 2 | ||||
-rw-r--r-- | vim/.vim/ftplugin/javascript.vim | 2 | ||||
-rw-r--r-- | vim/.vim/ftplugin/perl.vim | 2 | ||||
-rw-r--r-- | vim/.vim/ftplugin/python.vim | 2 | ||||
-rw-r--r-- | vim/.vim/ftplugin/sh.vim | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/vim/.vim/ftplugin/c.vim b/vim/.vim/ftplugin/c.vim index 1685f9e..e4d4ca1 100644 --- a/vim/.vim/ftplugin/c.vim +++ b/vim/.vim/ftplugin/c.vim @@ -1,4 +1,4 @@ -set tabstop=4 softtabstop=0 noexpandtab shiftwidth=4 +set tabstop=4 softtabstop=0 expandtab shiftwidth=4 set autoindent set syntax=c.doxygen diff --git a/vim/.vim/ftplugin/groovy.vim b/vim/.vim/ftplugin/groovy.vim index 5c2fba2..f41f3bf 100644 --- a/vim/.vim/ftplugin/groovy.vim +++ b/vim/.vim/ftplugin/groovy.vim @@ -1,2 +1,2 @@ -set tabstop=4 softtabstop=0 noexpandtab shiftwidth=4 +set tabstop=4 softtabstop=0 expandtab shiftwidth=4 set autoindent diff --git a/vim/.vim/ftplugin/javascript.vim b/vim/.vim/ftplugin/javascript.vim index 6abfcce..d140ed6 100644 --- a/vim/.vim/ftplugin/javascript.vim +++ b/vim/.vim/ftplugin/javascript.vim @@ -1,4 +1,4 @@ -set tabstop=2 softtabstop=0 noexpandtab shiftwidth=2 +set tabstop=2 softtabstop=0 expandtab shiftwidth=2 set autoindent let javaScript_fold=1 diff --git a/vim/.vim/ftplugin/perl.vim b/vim/.vim/ftplugin/perl.vim index 5c2fba2..f41f3bf 100644 --- a/vim/.vim/ftplugin/perl.vim +++ b/vim/.vim/ftplugin/perl.vim @@ -1,2 +1,2 @@ -set tabstop=4 softtabstop=0 noexpandtab shiftwidth=4 +set tabstop=4 softtabstop=0 expandtab shiftwidth=4 set autoindent diff --git a/vim/.vim/ftplugin/python.vim b/vim/.vim/ftplugin/python.vim index 5c2fba2..f41f3bf 100644 --- a/vim/.vim/ftplugin/python.vim +++ b/vim/.vim/ftplugin/python.vim @@ -1,2 +1,2 @@ -set tabstop=4 softtabstop=0 noexpandtab shiftwidth=4 +set tabstop=4 softtabstop=0 expandtab shiftwidth=4 set autoindent diff --git a/vim/.vim/ftplugin/sh.vim b/vim/.vim/ftplugin/sh.vim index 5c2fba2..f41f3bf 100644 --- a/vim/.vim/ftplugin/sh.vim +++ b/vim/.vim/ftplugin/sh.vim @@ -1,2 +1,2 @@ -set tabstop=4 softtabstop=0 noexpandtab shiftwidth=4 +set tabstop=4 softtabstop=0 expandtab shiftwidth=4 set autoindent |