summaryrefslogtreecommitdiff
path: root/init.vim
blob: 4d56e6e47626de4d9a24409788c5b2ca2a8db0a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
set number
set relativenumber
set ignorecase
set smartcase
set autochdir
set confirm
" set shortmess=a	" Abbreviate messages without info loss.
set colorcolumn=80

command W w
command Wq wq
command Q q
command WQ wq

autocmd TextYankPost * silent! lua vim.highlight.on_yank { higroup='IncSearch', timeout=4000 }