nvim: Fix wrong lazy.nvim plugin spec options
Some options were left over from old plugin managers, some were just used wrong.
This commit is contained in:
parent
157fbc812c
commit
c45d85922b
3 changed files with 4 additions and 5 deletions
|
@ -99,7 +99,6 @@ return {
|
|||
{ "WhoIsSethDaniel/mason-tool-installer.nvim" },
|
||||
},
|
||||
event = { "BufReadPost", "BufNewFile", "BufWritePre" },
|
||||
after = { "nvim-cmp" },
|
||||
config = function()
|
||||
require("plugins.config.lsp")
|
||||
end,
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
return {
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
run = ":TSUpdate",
|
||||
build = ":TSUpdate",
|
||||
-- show current cursor context at top of buffer
|
||||
-- improves commenting plugin above by using ts
|
||||
dependencies = {
|
||||
|
|
|
@ -2,7 +2,7 @@ return {
|
|||
-- statusline
|
||||
{
|
||||
"nvim-lualine/lualine.nvim",
|
||||
requires = { "nvim-tree/nvim-web-devicons", config = true },
|
||||
dependencies = { { "nvim-tree/nvim-web-devicons", config = true } },
|
||||
config = function()
|
||||
-- FIXME: Errors out on no pynvim installed
|
||||
-- local function molten()
|
||||
|
@ -58,10 +58,10 @@ return {
|
|||
},
|
||||
},
|
||||
event = { "VeryLazy" },
|
||||
cmd = {"Fidget"},
|
||||
cmd = { "Fidget" },
|
||||
keys = {
|
||||
{ "<leader>sh", "<cmd>Fidget history<cr>", { silent = true, desc = "show notification history" } },
|
||||
}
|
||||
},
|
||||
},
|
||||
-- make all vim.ui interfaces prettyy
|
||||
{ "stevearc/dressing.nvim", config = true, event = "VeryLazy" },
|
||||
|
|
Loading…
Reference in a new issue