From 98f8a77819670ce6012216e01885c135a6d3a289 Mon Sep 17 00:00:00 2001 From: Christian Chiarulli Date: Sat, 24 Jul 2021 21:17:11 -0400 Subject: New contract (#1080) Changes to the global config object O is now lvim user_plugins is now plugins user_autocommands is now autocommands No more lang specific plugins Null-ls has replaced both formatter.nvim and nvim-lint --- lua/core/nvimtree.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lua/core/nvimtree.lua') 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 -- cgit v1.2.3