23 lines
292 B
VimL
23 lines
292 B
VimL
" Set
|
|
filetype indent plugin on
|
|
|
|
" Syntax highlighting
|
|
syntax on
|
|
|
|
" Add number rows
|
|
set number
|
|
|
|
" No swap file
|
|
set noswapfile
|
|
|
|
" Incremental search & highlight
|
|
set incsearch
|
|
set hls
|
|
|
|
" Runtime path
|
|
let $RTP=split(&runtimepath, ',')[0]
|
|
let $RC="$HOME/.vimrc"
|
|
|
|
" Set default path
|
|
set path=.,**
|