diff options
author | Ekaitz Zárraga <ekaitz.zarraga@fon.com> | 2015-12-15 12:04:41 +0100 |
---|---|---|
committer | Ekaitz Zárraga <ekaitz.zarraga@fon.com> | 2015-12-15 12:04:41 +0100 |
commit | ce9db5c85ca8456328dc669a6557c964a40afea0 (patch) | |
tree | a10f892598b661f34f416a09fc194506e01249fb /vim/.vim/ftplugin | |
parent | deccc275df2fbc1ffe6601ab6f24a6fe3a360bfb (diff) |
Vim and Git configs
Diffstat (limited to 'vim/.vim/ftplugin')
-rw-r--r-- | vim/.vim/ftplugin/c.vim | 2 | ||||
-rw-r--r-- | vim/.vim/ftplugin/html.vim | 2 | ||||
-rw-r--r-- | vim/.vim/ftplugin/javascript.vim | 4 | ||||
-rw-r--r-- | vim/.vim/ftplugin/markdown.vim | 14 | ||||
-rw-r--r-- | vim/.vim/ftplugin/python.vim | 2 |
5 files changed, 24 insertions, 0 deletions
diff --git a/vim/.vim/ftplugin/c.vim b/vim/.vim/ftplugin/c.vim new file mode 100644 index 0000000..5c2fba2 --- /dev/null +++ b/vim/.vim/ftplugin/c.vim @@ -0,0 +1,2 @@ +set tabstop=4 softtabstop=0 noexpandtab shiftwidth=4 +set autoindent diff --git a/vim/.vim/ftplugin/html.vim b/vim/.vim/ftplugin/html.vim new file mode 100644 index 0000000..12b33db --- /dev/null +++ b/vim/.vim/ftplugin/html.vim @@ -0,0 +1,2 @@ +set tabstop=2 softtabstop=0 noexpandtab shiftwidth=2 +set autoindent diff --git a/vim/.vim/ftplugin/javascript.vim b/vim/.vim/ftplugin/javascript.vim new file mode 100644 index 0000000..6abfcce --- /dev/null +++ b/vim/.vim/ftplugin/javascript.vim @@ -0,0 +1,4 @@ +set tabstop=2 softtabstop=0 noexpandtab shiftwidth=2 +set autoindent + +let javaScript_fold=1 diff --git a/vim/.vim/ftplugin/markdown.vim b/vim/.vim/ftplugin/markdown.vim new file mode 100644 index 0000000..8abe28a --- /dev/null +++ b/vim/.vim/ftplugin/markdown.vim @@ -0,0 +1,14 @@ +setlocal syntax=markdown + +" Spellcheck in markdown (automatic to english) +setlocal spelllang=en +setlocal spell + +" Textwidth for automatic wrap `gq` is formatting operation +setlocal textwidth=79 +setlocal formatoptions+=t + + +" Highlight where the lines are more than 80 characters wide +setlocal colorcolumn=80 +highlight ColorColumn ctermbg=LightGreen diff --git a/vim/.vim/ftplugin/python.vim b/vim/.vim/ftplugin/python.vim new file mode 100644 index 0000000..5c2fba2 --- /dev/null +++ b/vim/.vim/ftplugin/python.vim @@ -0,0 +1,2 @@ +set tabstop=4 softtabstop=0 noexpandtab shiftwidth=4 +set autoindent |