diff options
Diffstat (limited to 'nvim/after/plugin/noice.lua')
| -rw-r--r-- | nvim/after/plugin/noice.lua | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/nvim/after/plugin/noice.lua b/nvim/after/plugin/noice.lua new file mode 100644 index 0000000..25ae102 --- /dev/null +++ b/nvim/after/plugin/noice.lua @@ -0,0 +1,30 @@ +require("noice").setup({ + lsp = { + override = { + ["vim.lsp.util.convert_input_to_markdown_lines"] = true, + ["vim.lsp.util.stylize_markdown"] = true, + ["cmp.entry.get_documentation"] = true, + }, + progress = { + enabled = false, + format = "lsp_progress", + format_done = "lsp_progress_done", + throttle = 1000 / 30, + view = "mini", + }, + }, + views = { + mini = { + win_options = { + winblend = 0 + } + }, + }, + presets = { + bottom_search = true, + command_palette = true, + long_message_to_split = true, + inc_rename = false, + lsp_doc_border = true, + }, +}) |