85 lines
2.1 KiB
Lua
85 lines
2.1 KiB
Lua
local config = {
|
|
views = {
|
|
cmdline_popup = {
|
|
position = {
|
|
row = 3,
|
|
col = "50%",
|
|
},
|
|
size = {
|
|
width = 60,
|
|
height = "auto",
|
|
},
|
|
},
|
|
cmdline_popupmenu = {
|
|
position = {
|
|
row = 6,
|
|
col = "50%",
|
|
},
|
|
size = {
|
|
width = 60,
|
|
height = "auto",
|
|
},
|
|
},
|
|
},
|
|
cmdline = {
|
|
enabled = true,
|
|
view = "cmdline", -- cmdline, cmdline_popup
|
|
opts = {},
|
|
---@type table<string, CmdlineFormat>
|
|
format = {
|
|
cmdline = { pattern = "^:", icon = "λ", lang = "vim", title = "" },
|
|
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 = {}, -- Used by input()
|
|
-- lua = false, -- to disable a format, set to `false`
|
|
},
|
|
},
|
|
notify = {
|
|
enabled = false,
|
|
view = "notify",
|
|
},
|
|
lsp = {
|
|
override = {
|
|
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
|
|
["vim.lsp.util.stylize_markdown"] = true,
|
|
},
|
|
-- Bottom right notifications with the lsp executions
|
|
progress = {
|
|
enabled = false,
|
|
--- @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",
|
|
},
|
|
},
|
|
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
|
|
},
|
|
routes = {
|
|
{ view = "cmdline", filter = { event = "msg_showmode" } },
|
|
{
|
|
filter = {
|
|
event = "msg_show",
|
|
kind = "",
|
|
find = "written",
|
|
},
|
|
opts = { skip = true },
|
|
},
|
|
},
|
|
}
|
|
|
|
return config
|