diff options
author | Chris <[email protected]> | 2021-03-17 03:30:03 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-03-17 03:30:03 -0400 |
commit | 9f955146515b789693f3e3c9709a1044a2d34d47 (patch) | |
tree | fca344a0bb31acc40d77f9811144f2f62bad3c11 /vimscript/functions.vim | |
parent | 784fdcf19d8fa48da50fd33dc15462f1c4da60a4 (diff) |
updates
Diffstat (limited to 'vimscript/functions.vim')
-rw-r--r-- | vimscript/functions.vim | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/vimscript/functions.vim b/vimscript/functions.vim index 6f869935..166c0959 100644 --- a/vimscript/functions.vim +++ b/vimscript/functions.vim @@ -23,3 +23,23 @@ command! ResetHunk lua require 'nv-utils'.reset_hunk() command! ResetBuffer lua require 'nv-utils'.reset_buffer() command! PreviewHunk lua require 'nv-utils'.preview_hunk() command! BlameLine lua require 'nv-utils'.blame_line() + +" TODO this really shouldn't be here +let g:nvim_tree_icons = { + \ 'default': '', + \ 'symlink': '', + \ 'git': { + \ 'unstaged': "✗", + \ 'staged': "✓", + \ 'unmerged': "", + \ 'renamed': "➜", + \ 'untracked': "" + \ }, + \ 'folder': { + \ 'default': "", + \ 'open': "", + \ 'empty': "", + \ 'empty_open': "", + \ 'symlink': "", + \ } + \ } |