From 23a47b83156a7572590689258593730a2b9269b9 Mon Sep 17 00:00:00 2001 From: Bill Niblock Date: Fri, 22 Sep 2017 10:57:58 -0400 Subject: [PATCH] vimrc: Don't set tabstop; do set default dict --- vim/vimrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index 9ac7d46..85bf10f 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -6,19 +6,20 @@ " General Settings " ============================================================================== set nocompatible " Why? (https://goo.gl/2RiJoo) + if !exists('g:syntax_on') syntax enable " Syntax hilighting endif + filetype plugin indent on " Enable filetype/indent/plugins set encoding=utf-8 " Character encoding +set spelllang=en_us " Set default dictionary set autoread " Auto-reload modified files set hidden " Allow for un-saved buffers set autochdir " Change directory automatically -set spelllang=en_us " Set default dictionary set autoindent " Enable auto-indentation set expandtab " Spaces for tab -set tabstop=4 " How many spaces a tab is set shiftwidth=4 " Spaces per shift set softtabstop=4 " Spaces to use when editing