dotfiles-mirror/config/nvim/init.vim

19 lines
324 B
VimL
Raw Normal View History

2025-09-30 07:28:33 +03:30
se notgc bg=light
color vim
2025-07-14 01:38:23 +03:30
2025-09-30 07:28:33 +03:30
let mapleader=","
2025-07-28 23:51:06 +03:30
2025-09-30 07:28:33 +03:30
se nu rnu
se fillchars=eob:\
2025-07-14 01:38:23 +03:30
2025-07-15 10:44:21 +03:30
set undofile
2025-09-30 07:28:33 +03:30
set undodir=~/.config/nvim/undodir
2025-07-14 01:38:23 +03:30
2025-09-30 07:28:33 +03:30
if !isdirectory(expand("~/.config/nvim/undodir"))
call mkdir(expand("~/.config/nvim/undodir"))
endif
2025-07-28 23:51:06 +03:30
2025-09-30 07:28:33 +03:30
let g:minimap_width = 10
let g:minimap_auto_start = 1
let g:minimap_auto_start_win_enter = 1