mirror of
https://github.com/ksyasuda/dotfiles.git
synced 2025-05-23 09:05:49 -07:00
94 lines
3.7 KiB
Lua
94 lines
3.7 KiB
Lua
return {
|
|
"folke/noice.nvim",
|
|
event = "VeryLazy",
|
|
opts = {
|
|
lsp = {
|
|
progress = {
|
|
enabled = true,
|
|
-- Lsp Progress is formatted using the builtins for lsp_progress. See config.format.builtin
|
|
-- See the section on formatting for more details on how to customize.
|
|
--- @type NoiceFormat|string
|
|
format = "lsp_progress",
|
|
--- @type NoiceFormat|string
|
|
format_done = "lsp_progress_done",
|
|
throttle = 1000 / 30, -- frequency to update lsp progress message
|
|
view = "mini",
|
|
},
|
|
-- override markdown rendering so that **cmp** and other plugins use **Treesitter**
|
|
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
|
|
},
|
|
hover = {
|
|
enabled = false,
|
|
silent = false, -- set to true to not show a message if hover is not available
|
|
view = "split", -- when nil, use defaults from documentation
|
|
---@type NoiceViewOptions
|
|
opts = {}, -- merged with defaults from documentation
|
|
},
|
|
signature = {
|
|
enabled = true,
|
|
auto_open = {
|
|
enabled = false,
|
|
trigger = true, -- Automatically show signature help when typing a trigger character from the LSP
|
|
luasnip = true, -- Will open signature help when jumping to Luasnip insert nodes
|
|
throttle = 50, -- Debounce lsp signature help request by 50ms
|
|
},
|
|
view = nil, -- when nil, use defaults from documentation
|
|
---@type NoiceViewOptions
|
|
opts = {}, -- merged with defaults from documentation
|
|
},
|
|
},
|
|
-- 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 = true, -- add a border to hover docs and signature help
|
|
},
|
|
cmdline = {
|
|
enabled = true, -- enables the Noice cmdline UI
|
|
view = "cmdline_popup", -- view for rendering the cmdline. Change to `cmdline` to get a classic cmdline at the bottom
|
|
opts = {}, -- global options for the cmdline. See section on views
|
|
---@type table<string, CmdlineFormat>
|
|
format = {
|
|
-- conceal: (default=true) This will hide the text in the cmdline that matches the pattern.
|
|
-- view: (default is cmdline view)
|
|
-- opts: any options passed to the view
|
|
-- icon_hl_group: optional hl_group for the icon
|
|
-- title: set to anything or empty string to hide
|
|
cmdline = { pattern = "^:", icon = "", lang = "vim" },
|
|
search_down = { kind = "search", pattern = "^/", icon = " ", lang = "regex" },
|
|
search_up = { kind = "search", pattern = "^%?", icon = " ", lang = "regex" },
|
|
filter = { pattern = "^:%s*!", icon = "$", lang = "bash" },
|
|
lua = { pattern = { "^:%s*lua%s+", "^:%s*lua%s*=%s*", "^:%s*=%s*" }, icon = "", lang = "lua" },
|
|
help = { pattern = "^:%s*he?l?p?%s+", icon = "" },
|
|
input = { view = "cmdline_input", icon = " " }, -- Used by input()
|
|
-- lua = false, -- to disable a format, set to `false`
|
|
},
|
|
},
|
|
views = {
|
|
cmdline_popup = {
|
|
border = {
|
|
style = "none",
|
|
padding = { 0, 0 },
|
|
},
|
|
filter_options = {},
|
|
win_options = {
|
|
winhighlight = "NormalFloat:NormalFloat,FloatBorder:FloatBorder",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
dependencies = {
|
|
-- if you lazy-load any plugin below, make sure to add proper `module="..."` entries
|
|
"MunifTanjim/nui.nvim",
|
|
-- OPTIONAL:
|
|
-- `nvim-notify` is only needed, if you want to use the notification view.
|
|
-- If not available, we use `mini` as the fallback
|
|
"rcarriga/nvim-notify",
|
|
},
|
|
}
|