diff options
Diffstat (limited to 'lua/core/nvimtree.lua')
-rw-r--r-- | lua/core/nvimtree.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/core/nvimtree.lua b/lua/core/nvimtree.lua index a763c71d..62f71d32 100644 --- a/lua/core/nvimtree.lua +++ b/lua/core/nvimtree.lua @@ -1,7 +1,7 @@ local M = {} -- M.config = function() - O.plugin.nvimtree = { + lvim.builtin.nvimtree = { side = "left", show_icons = { git = 1, @@ -52,7 +52,7 @@ M.setup = function() end local g = vim.g - for opt, val in pairs(O.plugin.nvimtree) do + for opt, val in pairs(lvim.builtin.nvimtree) do g["nvim_tree_" .. opt] = val end |