aboutsummaryrefslogtreecommitdiff
path: root/nvim/after/plugin/noice.lua
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:40:16 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:40:16 +0000
commitb94eefa6b58f274bb61db4e792105c3959cf2022 (patch)
tree3d2896fb46ebc769e4fea8cf4f02ce3104e1f974 /nvim/after/plugin/noice.lua
init dotfiles and stuffHEADmaster
Diffstat (limited to 'nvim/after/plugin/noice.lua')
-rw-r--r--nvim/after/plugin/noice.lua30
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,
+ },
+})