nix-configs/hm-imports/nvim/config/lua/plugin/noice.lua
Philipp Hochkamp 6c615e4ed6 vim stuffzies
2023-03-08 22:35:02 +01:00

19 lines
600 B
Lua

require("noice").setup({
views = {
notify = {
merge = true,
}
},
-- you can enable a preset for easier configuration
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
},
})
require("notify").setup({
stages = "static",
max_width = 70,
})