My custom kickstart.nvim setup

This commit is contained in:
Martin-Melody 2024-09-17 14:23:30 +01:00
parent 1860184830
commit c51b67a644
22 changed files with 1005 additions and 43 deletions

View file

@ -0,0 +1,24 @@
return {
'folke/noice.nvim',
event = 'VeryLazy',
opts = {
-- add any options here
lsp = {
override = {
['vim.lsp.util.convert_input_to_markdown_lines'] = true,
['vim.lsp.util.stylize_markdown'] = true,
['cmp.entry.get_documentation'] = true,
},
},
},
config = function()
local noice = require 'noice'
noice.setup {
-- any options for noice
}
end,
dependencies = {
'MunifTanjim/nui.nvim',
'rcarriga/nvim-notify',
},
}