My custom kickstart.nvim setup
This commit is contained in:
parent
1860184830
commit
c51b67a644
22 changed files with 1005 additions and 43 deletions
24
lua/custom/plugins/noice.lua
Normal file
24
lua/custom/plugins/noice.lua
Normal 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',
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue