mirror of
https://github.com/jbowdre/vagrant-saltlab.git
synced 2024-11-23 14:02:19 +00:00
John Bowdre
db9ef4c5d7
- change id to avoid ambiguity with package names - rename module/folder because I'm not going to configure other editors - update references to match
18 lines
319 B
VimL
18 lines
319 B
VimL
" coding preferences
|
|
filetype off
|
|
filetype plugin indent on
|
|
|
|
syntax on
|
|
set backspace=indent,eol,start
|
|
set noautoindent
|
|
set noswapfile
|
|
set number
|
|
set ruler
|
|
set showmatch
|
|
set smarttab
|
|
set ts=2 sw=2 sts=2 expandtab
|
|
|
|
let mapleader=","
|
|
if has("autocmd")
|
|
autocmd FileType go set ts=2 sw=2 sts=2 noet nolist autowrite
|
|
endif
|