1
0
Fork 0
dotfiles/.config/vim/vimrc
rhjr 63c6bd2eea Added: .config/vim/vimrc
2026-07-05 08:01:32 -04:00

24 lines
440 B
VimL

syntax on
set mouse=a
set encoding=utf8
set nobackup nowb noswapfile
set viminfo=
set runtimepath^=$HOME/.config/vim
set relativenumber
set autoindent expandtab smarttab tabstop=2 shiftwidth=2
set so=7 " keep up to 7 lines visible during scrolling.
set incsearch hlsearch ignorecase
set noerrorbells novisualbell
"= netrw
let g:netrw_keepdir = 0
let g:netrw_winsize = 20
let g:netrw_banner = 0
let g:netrw_localcopydircmd = "cp -r"