nvim: add noice package

This commit is contained in:
thomasabishop 2024-02-18 15:03:55 +00:00
parent c33ddff8ef
commit dde527cd3d
3 changed files with 24 additions and 0 deletions

View file

@ -28,3 +28,4 @@ require("thomas.plugins.nvim-tree")
require("thomas.plugins.rainbow-delimiters")
require("thomas.plugins.gitblame")
require("thomas.plugins.zk")
require("thomas.plugins.noice")

View file

@ -37,6 +37,7 @@ return packer.startup(function(use)
require("pandoc").setup()
end,
})
use({ "folke/noice.nvim", requires = { "MunifTanjim/nui.nvim", "rcarriga/nvim-notify" } })
use("ellisonleao/gruvbox.nvim")
use("sainnhe/gruvbox-material")

View file

@ -0,0 +1,22 @@
local noice_setup, noice = pcall(require, "noice")
if not noice_setup then
return
end
noice.setup({
lsp = {
override = {
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
["vim.lsp.util.stylize_markdown"] = true,
["cmp.entry.get_documentation"] = true, -- requires hrsh7th/nvim-cmp
},
presets = {
bottom_search = true, -- use a classic bottom cmdline for search
command_palette = true, -- position the cmdline and popupmenu together
long_message_to_split = true, -- long messages will be sent to a split
inc_rename = false, -- enables an input dialog for inc-rename.nvim
lsp_doc_border = false, -- add a border to hover docs and signature help
},
},
})