vimrc: Don't set tabstop; do set default dict

This commit is contained in:
Bill Niblock 2017-09-22 10:57:58 -04:00
parent 6817f94a79
commit 23a47b8315

View file

@ -6,19 +6,20 @@
" General Settings " General Settings
" ============================================================================== " ==============================================================================
set nocompatible " Why? (https://goo.gl/2RiJoo) set nocompatible " Why? (https://goo.gl/2RiJoo)
if !exists('g:syntax_on') if !exists('g:syntax_on')
syntax enable " Syntax hilighting syntax enable " Syntax hilighting
endif endif
filetype plugin indent on " Enable filetype/indent/plugins filetype plugin indent on " Enable filetype/indent/plugins
set encoding=utf-8 " Character encoding set encoding=utf-8 " Character encoding
set spelllang=en_us " Set default dictionary
set autoread " Auto-reload modified files set autoread " Auto-reload modified files
set hidden " Allow for un-saved buffers set hidden " Allow for un-saved buffers
set autochdir " Change directory automatically set autochdir " Change directory automatically
set spelllang=en_us " Set default dictionary
set autoindent " Enable auto-indentation set autoindent " Enable auto-indentation
set expandtab " Spaces for tab set expandtab " Spaces for tab
set tabstop=4 " How many spaces a tab is
set shiftwidth=4 " Spaces per shift set shiftwidth=4 " Spaces per shift
set softtabstop=4 " Spaces to use when editing set softtabstop=4 " Spaces to use when editing