You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
307 B
VimL
14 lines
307 B
VimL
6 years ago
|
set nocompatible
|
||
|
|
||
|
let &packpath = expand('<sfile>:p:h:h')
|
||
|
|
||
|
" Remove first and last entry from runtimepath, to prevent loading plugins from ~/.vim
|
||
|
let &runtimepath = substitute(&runtimepath, '\v^.{-},(.*),.*$', '\1', '')
|
||
|
|
||
|
filetype plugin indent on
|
||
|
syntax on
|
||
|
|
||
|
set expandtab
|
||
|
set shiftwidth=2
|
||
|
set softtabstop=2
|