dotfiles/vimrc/.vimrc

23 lines
292 B
VimL
Raw Normal View History

2022-07-14 04:21:21 +00:00
" Set
filetype indent plugin on
" Syntax highlighting
2022-03-12 21:38:58 +00:00
syntax on
2022-07-14 04:21:21 +00:00
" 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=.,**