aboutsummaryrefslogtreecommitdiff
path: root/vim/.vim/after
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2020-01-28 16:22:43 -0500
committerTucker Evans <tuckerevans24@gmail.com>2020-01-28 16:22:43 -0500
commit72dac1e37f005ff41cbf554ab54d428796416045 (patch)
treeed751275762b2867d2da4a5eaa83b67c14aefc97 /vim/.vim/after
parent21c9d504e4f2d3281755afef0820d0f286e926ca (diff)
Update vim colors
Diffstat (limited to 'vim/.vim/after')
-rw-r--r--vim/.vim/after/ftplugin/html.vim4
-rw-r--r--vim/.vim/after/ftplugin/typescript.vim3
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