diff options
author | kylo252 <[email protected]> | 2021-10-24 08:37:02 +0200 |
---|---|---|
committer | kylo252 <[email protected]> | 2021-10-24 08:37:02 +0200 |
commit | 1f2167df0ea3f837c9c78a0137a888ca05e5e83a (patch) | |
tree | 6fd46809d7dd4ff7fffae00b257579397de793cd /lua/lvim/plugins.lua | |
parent | 30de3736baec9a72134205de91f3388e3ea68bcf (diff) | |
parent | 3dd60bd3d4165b14844a514d519f3810b8142a02 (diff) |
Merge remote-tracking branch 'origin/rolling'
Diffstat (limited to 'lua/lvim/plugins.lua')
-rw-r--r-- | lua/lvim/plugins.lua | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua index 616b2fa0..c50e74d8 100644 --- a/lua/lvim/plugins.lua +++ b/lua/lvim/plugins.lua @@ -8,7 +8,10 @@ return { { "williamboman/nvim-lsp-installer", }, - { "rcarriga/nvim-notify" }, + { + "rcarriga/nvim-notify", + disable = not lvim.builtin.notify.active, + }, { "Tastyep/structlog.nvim" }, { "nvim-lua/popup.nvim" }, @@ -96,10 +99,8 @@ return { }, -- Whichkey - -- TODO: change back to folke/which-key.nvim after folke got back { - "abzcoding/which-key.nvim", - branch = "fix/neovim-6-position", + "folke/which-key.nvim", config = function() require("lvim.core.which-key").setup() end, @@ -132,7 +133,7 @@ return { -- Status Line and Bufferline { -- "hoob3rt/lualine.nvim", - "shadmansaleh/lualine.nvim", + "nvim-lualine/lualine.nvim", -- "Lunarvim/lualine.nvim", config = function() require("lvim.core.lualine").setup() |