-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.undotree.vim
More file actions
34 lines (32 loc) · 1.09 KB
/
Copy pathconfig.undotree.vim
File metadata and controls
34 lines (32 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
let g:undotree_WindowLayout = 4
let g:undotree_SplitWidth = 28
let g:undotree_DiffpanelHeight = 16
let g:undotree_DiffAutoOpen = v:true
let g:undotree_SetFocusWhenToggle = v:true
let g:undotree_TreeNodeShape = "."
let g:undotree_TreeReturnShape = '\'
let g:undotree_TreeVertShape = "|"
let g:undotree_TreeSplitShape = "/"
let g:undotree_DiffCommand = "diff"
let g:undotree_RelativeTimestamp = v:true
let g:undotree_ShortIndicators = v:true
let g:undotree_HighlightChangedText = v:true
let g:undotree_HelpLine = v:false
let g:undotree_CursorLine = v:false
let g:undotree_DisabledFiletypes = []
augroup package_undotree
autocmd!
autocmd ColorScheme *
\ hi! link UndotreeBranch Normal |
\ hi! link UndotreeCurrent Normal |
\ hi! link UndotreeFirstNode Normal |
\ hi! link UndotreeHead Normal |
\ hi! link UndotreeNext Normal |
\ hi! link UndotreeNode Normal |
\ hi! link UndotreeNodeCurrent Normal |
\ hi! link UndotreeSavedBig Normal |
\ hi! link UndotreeSavedSmall Normal |
\ hi! link UndotreeSeq Normal |
\ hi! link UndotreeTimeStamp Normal
augroup END
nnoremap <C-U> <Cmd>UndotreeToggle<CR>