diff options
author | kylo252 <[email protected]> | 2022-09-16 11:15:18 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2022-09-16 11:15:18 +0200 |
commit | 62d9a4ea9df1828af2cbc6c5f42774f1662aaab4 (patch) | |
tree | c53b9b6c1719d3339d8cc249d25a5947c44b8a9f /lua/lvim/plugins.lua | |
parent | a4c2dc4d0b638a50c3219f247b09e6238a44ec50 (diff) |
revert: remove incomplete lir integration (#3030)
Diffstat (limited to 'lua/lvim/plugins.lua')
-rw-r--r-- | lua/lvim/plugins.lua | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua index 0b3b51fc..bfe76bb8 100644 --- a/lua/lvim/plugins.lua +++ b/lua/lvim/plugins.lua @@ -132,19 +132,13 @@ local core_plugins = { -- NvimTree { "kyazdani42/nvim-tree.lua", + -- event = "BufWinOpen", + -- cmd = "NvimTreeToggle", config = function() require("lvim.core.nvimtree").setup() end, disable = not lvim.builtin.nvimtree.active, }, - { - - "christianchiarulli/lir.nvim", - config = function() - require("lvim.core.lir").setup() - end, - disable = not lvim.builtin.nvimtree.active, - }, { "lewis6991/gitsigns.nvim", |