diff --git a/dot_config/nvim/lua/configs/neotree.lua b/dot_config/nvim/lua/configs/neotree.lua index 44660d7..d6859fe 100644 --- a/dot_config/nvim/lua/configs/neotree.lua +++ b/dot_config/nvim/lua/configs/neotree.lua @@ -62,7 +62,7 @@ function M.setup() -- Status type untracked = '', ignored = '', - unstaged = '', + unstaged = '', staged = '', conflict = '', } diff --git a/dot_config/nvim/lua/configs/nvimtree.lua b/dot_config/nvim/lua/configs/nvimtree.lua deleted file mode 100644 index 182cc21..0000000 --- a/dot_config/nvim/lua/configs/nvimtree.lua +++ /dev/null @@ -1,33 +0,0 @@ -local M = {} -function M.setup() - require('nvim-tree').setup({ - sync_root_with_cwd = true, - renderer = { - add_trailing = true, - special_files = {}, - highlight_git = true, - indent_markers = { - enable = true, - }, - icons = { - show = { - file = false, - folder = false, - folder_arrow = false, - git = false - } - }, - }, - git = { - ignore = true - }, - filters = { - dotfiles = true, - }, - }) - - vim.api.nvim_set_keymap('n', '', [[NvimTreeToggle]], {}) - vim.api.nvim_set_keymap('n', '', [[NvimTreeFindFile]], {}) -end - -return M