You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
969 B
30 lines
969 B
local M = { |
|
"j-hui/fidget.nvim", |
|
} |
|
|
|
function M.config() |
|
require("fidget").setup { |
|
integration = { |
|
["nvim-tree"] = { |
|
enable = true, |
|
}, |
|
}, |
|
|
|
notification = { |
|
window = { |
|
normal_hl = "CursorLineNr", -- Base highlight group in the notification window |
|
winblend = 100, -- Background color opacity in the notification window |
|
border = "none", -- Border around the notification window |
|
zindex = 45, -- Stacking priority of the notification window |
|
max_width = 0, -- Maximum width of the notification window |
|
max_height = 0, -- Maximum height of the notification window |
|
x_padding = 1, -- Padding from right edge of window boundary |
|
y_padding = 0, -- Padding from bottom edge of window boundary |
|
align = "bottom", -- How to align the notification window |
|
relative = "editor", -- What the notification window position is relative to |
|
}, |
|
}, |
|
} |
|
end |
|
|
|
return M
|
|
|