From 24c7171a73d34420fc69fba4cf19fbed0a8ed06c Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Tue, 30 Apr 2019 16:36:08 -0700 Subject: [PATCH] Rearrange vimrc. --- dotfiles/vimrc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dotfiles/vimrc b/dotfiles/vimrc index 25b2178..69fac7b 100644 --- a/dotfiles/vimrc +++ b/dotfiles/vimrc @@ -45,8 +45,6 @@ if $TERM ==? 'rxvt-unicode-256color' let g:solarized_use16=1 endif silent! colorscheme solarized8 -" Enable filetype support -filetype plugin indent on " Default ASM syntax for ft support let asmsyntax="nasm" " Allow file modelines @@ -142,3 +140,7 @@ command Unsmartquote %s/“\|”/"/g " Markdown options autocmd Filetype markdown set expandtab shiftwidth=4 + +" Enable filetype support +" Needs to be at end of vimrc +filetype plugin indent on