FollieHiyuki-dotfiles/nvim-old/plug-config/undo.vim
FollieHiyuki b080c54e5b
Add glow config
Also deprecate neovim config.
2021-10-17 21:48:02 +07:00

17 lines
477 B
VimL

" Persistent undo history
if has("persistent_undo")
set undodir=$HOME/.local/share/nvim/undodir
set undofile
endif
let g:undotree_WindowLayout = 4
let g:undotree_ShortIndicators = 1
let g:undotree_SplitWidth = 24
let g:undotree_DiffpanelHeight = 10
let g:undotree_DiffAutoOpen = 1
let g:undotree_SetFocusWhenToggle = 1
let g:undotree_RelativeTimestamp = 1
let g:undotree_HelpLine = 1
let g:undotree_HighlightChangedText = 1
let g:undotree_HighlightChangedWithSign = 0