mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 21:30:51 +00:00
feat: match new nvimtree.lua module name in othere modules
This commit is contained in:
parent
5c7546a8fa
commit
74d7b394b5
2 changed files with 2 additions and 7 deletions
|
@ -23,7 +23,7 @@ in {
|
||||||
always_divide_middle = true,
|
always_divide_middle = true,
|
||||||
globalstatus = ${boolToString cfg.globalStatus},
|
globalstatus = ${boolToString cfg.globalStatus},
|
||||||
ignore_focus = {'NvimTree'},
|
ignore_focus = {'NvimTree'},
|
||||||
extensions = {${optionalString config.vim.filetree.nvimTreeLua.enable "'nvim-tree'"}},
|
extensions = {${optionalString config.vim.filetree.nvimTree.enable "'nvim-tree'"}},
|
||||||
refresh = {
|
refresh = {
|
||||||
statusline = ${toString cfg.refresh.statusline},
|
statusline = ${toString cfg.refresh.statusline},
|
||||||
tabline = ${toString cfg.refresh.tabline},
|
tabline = ${toString cfg.refresh.tabline},
|
||||||
|
@ -60,11 +60,6 @@ in {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
''}
|
''}
|
||||||
extensions = {${
|
|
||||||
if (config.vim.filetree.nvimTreeLua.enable)
|
|
||||||
then "\"nvim-tree\""
|
|
||||||
else ""
|
|
||||||
}},
|
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
|
@ -95,7 +95,7 @@ in {
|
||||||
|
|
||||||
${
|
${
|
||||||
# TODO: This probably will need to be reworked for custom-keybinds
|
# TODO: This probably will need to be reworked for custom-keybinds
|
||||||
if config.vim.filetree.nvimTreeLua.enable
|
if config.vim.filetree.nvimTree.enable
|
||||||
then ''
|
then ''
|
||||||
-- NvimTree
|
-- NvimTree
|
||||||
["<leader>t"] = { name = "+NvimTree" },
|
["<leader>t"] = { name = "+NvimTree" },
|
||||||
|
|
Loading…
Reference in a new issue