From 72dac1e37f005ff41cbf554ab54d428796416045 Mon Sep 17 00:00:00 2001 From: Tucker Evans Date: Tue, 28 Jan 2020 16:22:43 -0500 Subject: Update vim colors --- vim/.vim/after/ftplugin/html.vim | 4 ++++ vim/.vim/after/ftplugin/typescript.vim | 3 +++ 2 files changed, 7 insertions(+) create mode 100644 vim/.vim/after/ftplugin/html.vim create mode 100644 vim/.vim/after/ftplugin/typescript.vim (limited to 'vim/.vim/after') 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 -- cgit v1.1