diff options
author | kylo252 <[email protected]> | 2022-10-04 19:23:52 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2022-10-04 13:23:52 -0400 |
commit | e5bcf01c759e7c833d8a5f1fcf665b6ea32a7c16 (patch) | |
tree | 51b68c8face9faa2a41fcc8103b6296213557d4b /lua/lvim/plugins.lua | |
parent | 560ee4d7cf4038a22a5556d79ad92cd226a792dc (diff) |
refactor: more deliberate reload (#3133)
Diffstat (limited to 'lua/lvim/plugins.lua')
-rw-r--r-- | lua/lvim/plugins.lua | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua index c315cdd9..0b5e1c72 100644 --- a/lua/lvim/plugins.lua +++ b/lua/lvim/plugins.lua @@ -16,10 +16,6 @@ local core_plugins = { }, { "folke/tokyonight.nvim", - config = function() - require("lvim.core.theme").setup() - end, - -- disable = not vim.startswith(lvim.colorscheme, "tokyonight"), }, { "rcarriga/nvim-notify", @@ -139,6 +135,7 @@ local core_plugins = { config = function() require("lvim.core.lir").setup() end, + requires = { "kyazdani42/nvim-web-devicons" }, disable = not lvim.builtin.lir.active, }, { |