nvim: add noice package
This commit is contained in:
parent
c33ddff8ef
commit
dde527cd3d
3 changed files with 24 additions and 0 deletions
|
@ -28,3 +28,4 @@ require("thomas.plugins.nvim-tree")
|
||||||
require("thomas.plugins.rainbow-delimiters")
|
require("thomas.plugins.rainbow-delimiters")
|
||||||
require("thomas.plugins.gitblame")
|
require("thomas.plugins.gitblame")
|
||||||
require("thomas.plugins.zk")
|
require("thomas.plugins.zk")
|
||||||
|
require("thomas.plugins.noice")
|
||||||
|
|
|
@ -37,6 +37,7 @@ return packer.startup(function(use)
|
||||||
require("pandoc").setup()
|
require("pandoc").setup()
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
use({ "folke/noice.nvim", requires = { "MunifTanjim/nui.nvim", "rcarriga/nvim-notify" } })
|
||||||
|
|
||||||
use("ellisonleao/gruvbox.nvim")
|
use("ellisonleao/gruvbox.nvim")
|
||||||
use("sainnhe/gruvbox-material")
|
use("sainnhe/gruvbox-material")
|
||||||
|
|
22
nvim/lua/thomas/plugins/noice.lua
Normal file
22
nvim/lua/thomas/plugins/noice.lua
Normal 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
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
Loading…
Add table
Reference in a new issue