feat: Updates nvim, fidget and removes neo-dev.

This commit is contained in:
2024-12-15 18:52:28 -05:00
parent d27f2ad490
commit 6c84428179
2 changed files with 22 additions and 22 deletions

View File

@@ -1,23 +1,23 @@
return { return {
"j-hui/fidget.nvim", "j-hui/fidget.nvim",
event = "VeryLazy", event = "VeryLazy",
config = function() config = function()
local fidget = require("fidget") local fidget = require("fidget")
fidget.setup({ fidget.setup({
notification = { notification = {
window = { window = {
normal_hl = "String", -- Base highlight group in the notification window normal_hl = "String", -- Base highlight group in the notification window
winblend = 0, -- Background color opacity in the notification window winblend = 0, -- Background color opacity in the notification window
border = "rounded", -- Border around the notification window border = "rounded", -- Border around the notification window
zindex = 45, -- Stacking priority of the notification window zindex = 45, -- Stacking priority of the notification window
max_width = 0, -- Maximum width of the notification window max_width = 0, -- Maximum width of the notification window
max_height = 0, -- Maximum height of the notification window max_height = 0, -- Maximum height of the notification window
x_padding = 1, -- Padding from right edge of window boundary x_padding = 1, -- Padding from right edge of window boundary
y_padding = 1, -- Padding from bottom edge of window boundary y_padding = 1, -- Padding from bottom edge of window boundary
align = "bottom", -- How to align the notification window align = "bottom", -- How to align the notification window
relative = "editor", -- What the notification window position is relative to relative = "editor", -- What the notification window position is relative to
}, },
}, },
}) })
end, end,
} }

View File

@@ -42,7 +42,7 @@ require("lazy").setup({
}, },
-- LSP, formatting, etc. -- -- LSP, formatting, etc. --
{ "folke/neodev.nvim", opts = {} }, --{ "folke/neodev.nvim", opts = {} },
}, { }, {
checker = { checker = {
enabled = true, enabled = true,