diff options
| author | Christian Chiarulli <[email protected]> | 2022-09-15 23:33:08 -0400 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2022-09-15 23:33:08 -0400 | 
| commit | a4c2dc4d0b638a50c3219f247b09e6238a44ec50 (patch) | |
| tree | 250527d4ca3a5644d6d6fbae80d9d5a2abee5b0d /lua/lvim/plugins.lua | |
| parent | 464ad8b0035cbcaf4864d14da598b77a939026d8 (diff) | |
refactor: small improvements (#3021)
Diffstat (limited to 'lua/lvim/plugins.lua')
| -rw-r--r-- | lua/lvim/plugins.lua | 10 | 
1 files changed, 8 insertions, 2 deletions
| diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua index bfe76bb8..0b3b51fc 100644 --- a/lua/lvim/plugins.lua +++ b/lua/lvim/plugins.lua @@ -132,13 +132,19 @@ 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", | 
