1
0
mirror of https://github.com/artizirk/dotfiles.git synced 2024-07-03 13:20:10 +03:00
dotfiles/.config/nvim/init.vim

13 lines
391 B
VimL
Raw Normal View History

2019-04-05 14:49:19 +03:00
" show some context lines up/down of the cursor
2019-05-23 16:04:13 +03:00
set scrolloff=3
set ignorecase
2019-08-12 11:47:35 +03:00
set cursorline
hi cursorline cterm=none term=none
autocmd WinEnter * setlocal cursorline
autocmd WinLeave * setlocal nocursorline
highlight CursorLine guibg=#303000 ctermbg=234
2019-08-12 11:47:35 +03:00
" configure reasonable swap file
" https://begriffs.com/posts/2019-07-19-history-use-vim.html?hn=3#backups-and-undo
runtime swap.vim