init my kickstart
This commit is contained in:
commit
1ebfcd071c
23 changed files with 1694 additions and 0 deletions
20
lua/custom/plugins/notifier.lua
Normal file
20
lua/custom/plugins/notifier.lua
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
return {
|
||||
'vigoux/notifier.nvim',
|
||||
config = function()
|
||||
require('notifier').setup {
|
||||
{
|
||||
ignore_messages = {}, -- Ignore message from LSP servers with this name
|
||||
components = { -- Order of the components to draw from top to bottom (first nvim notifications, then lsp)
|
||||
'nvim', -- Nvim notifications (vim.notify and such)
|
||||
'lsp', -- LSP status updates
|
||||
},
|
||||
notify = {
|
||||
clear_time = 5000, -- Time in milliseconds before removing a vim.notify notification, 0 to make them sticky
|
||||
min_level = vim.log.levels.INFO, -- Minimum log level to print the notification
|
||||
},
|
||||
component_name_recall = false, -- Whether to prefix the title of the notification by the component name
|
||||
zindex = 50, -- The zindex to use for the floating window. Note that changing this value may cause visual bugs with other windows overlapping the notifier window.
|
||||
},
|
||||
}
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue