diff options
Diffstat (limited to 'vim/.vim/after')
-rw-r--r-- | vim/.vim/after/ftplugin/html.vim | 4 | ||||
-rw-r--r-- | vim/.vim/after/ftplugin/typescript.vim | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/vim/.vim/after/ftplugin/html.vim b/vim/.vim/after/ftplugin/html.vim new file mode 100644 index 0000000..8c2d0c8 --- /dev/null +++ b/vim/.vim/after/ftplugin/html.vim @@ -0,0 +1,4 @@ +" Tab specific option +set tabstop=2 "A tab is 8 spaces +set shiftwidth=2 "An indent is 4 spaces +set shiftround "Round indent to nearest shiftwidth multiple diff --git a/vim/.vim/after/ftplugin/typescript.vim b/vim/.vim/after/ftplugin/typescript.vim new file mode 100644 index 0000000..0b527fd --- /dev/null +++ b/vim/.vim/after/ftplugin/typescript.vim @@ -0,0 +1,3 @@ +set expandtab +set tabstop=2 +set shiftwidth=2 |