diff options
author | kylo252 <[email protected]> | 2022-05-03 08:55:15 +0200 |
---|---|---|
committer | kylo252 <[email protected]> | 2022-05-03 08:55:15 +0200 |
commit | e264bff7e820ba891cd16892de52236d62f7821f (patch) | |
tree | 4262530ac7738ebdec0fa6abab560610789b72f3 /lua/lvim/plugins.lua | |
parent | ad5eeaf6ad12cf05e4b936690bf78bc53827b12c (diff) | |
parent | cfa702e6fe2f875a2c674182fe2f86e8f613aa1e (diff) |
Merge remote-tracking branch 'origin/rolling'
Diffstat (limited to 'lua/lvim/plugins.lua')
-rw-r--r-- | lua/lvim/plugins.lua | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua index 1b885a09..c39311ed 100644 --- a/lua/lvim/plugins.lua +++ b/lua/lvim/plugins.lua @@ -97,7 +97,8 @@ local core_plugins = { "hrsh7th/cmp-path", }, { - "folke/lua-dev.nvim", + -- NOTE: Temporary fix till folke comes back + "max397574/lua-dev.nvim", module = "lua-dev", }, @@ -147,7 +148,7 @@ local core_plugins = { -- Whichkey { - "folke/which-key.nvim", + "max397574/which-key.nvim", config = function() require("lvim.core.which-key").setup() end, @@ -175,7 +176,10 @@ local core_plugins = { }, -- Icons - { "kyazdani42/nvim-web-devicons" }, + { + "kyazdani42/nvim-web-devicons", + disable = not lvim.use_icons, + }, -- Status Line and Bufferline { |