This commit is contained in:
sadan 2024-12-18 02:20:22 -05:00
parent 6505701cb8
commit 5e880633c4
No known key found for this signature in database
3 changed files with 287 additions and 281 deletions

6
.editorconfig Normal file
View file

@ -0,0 +1,6 @@
root = true
[*]
indent_size = 4
indent_style = space
end_of_line = lf
insert_final_newline = true

View file

@ -8,7 +8,7 @@ vim.opt.smartcase = true
vim.opt.ignorecase = true vim.opt.ignorecase = true
vim.opt.scrolloff = 6 vim.opt.scrolloff = 6
vim.opt.sloc = "statusline" vim.opt.sloc = "statusline"
-- eregex.vim -- eregex.vim
vim.g.eregex_default_enable = 1 vim.g.eregex_default_enable = 1
vim.api.nvim_create_autocmd({ "BufEnter" }, { vim.api.nvim_create_autocmd({ "BufEnter" }, {

View file

@ -6,313 +6,313 @@ local logged = false
-- or vim.api.nvim_buf_get_keymap(buf, mode) -- or vim.api.nvim_buf_get_keymap(buf, mode)
-- to see if it has any mappings with (lhs) -- to see if it has any mappings with (lhs)
local function hasLHS(arr, lhs) local function hasLHS(arr, lhs)
for key, value in pairs(arr) do for key, value in pairs(arr) do
if value.lhs == lhs then if value.lhs == lhs then
return value return value
end end
end end
return nil return nil
end end
local function makeOldRightClick() local function makeOldRightClick()
-- try buffer local mappings -- try buffer local mappings
local toRet = hasLHS(vim.api.nvim_buf_get_keymap(0, ""), "<RightMouse>") local toRet = hasLHS(vim.api.nvim_buf_get_keymap(0, ""), "<RightMouse>")
if toRet == nil then if toRet == nil then
elseif toRet.callback ~= nil then elseif toRet.callback ~= nil then
return toRet.callback return toRet.callback
elseif toRet.rhs then elseif toRet.rhs then
return toRet.rhs return toRet.rhs
else else
error("how") error("how")
end end
toRet = hasLHS(vim.api.nvim_get_keymap(""), "<RightMouse>") toRet = hasLHS(vim.api.nvim_get_keymap(""), "<RightMouse>")
if toRet == nil then if toRet == nil then
return function() end return function() end
elseif toRet.callback ~= nil then elseif toRet.callback ~= nil then
return toRet.callback return toRet.callback
elseif toRet.rhs ~= nil then elseif toRet.rhs ~= nil then
return toRet.rhs return toRet.rhs
else else
error("how") error("how")
end end
end end
local oldRightClick = nil local oldRightClick = nil
local function createOldRightClick() local function createOldRightClick()
if oldRightClick == nil then if oldRightClick == nil then
oldRightClick = makeOldRightClick() oldRightClick = makeOldRightClick()
end end
end end
---@generic T ---@generic T
---@param tbl table<T> ---@param tbl table<T>
---@param el T ---@param el T
---@return number | -1 ---@return number | -1
local function indexOf(tbl, el) local function indexOf(tbl, el)
for index, value in ipairs(tbl) do for index, value in ipairs(tbl) do
if value == el then if value == el then
return index return index
end end
end end
return -1 return -1
end end
local windows = {} local windows = {}
local openWindowCount = 0 local openWindowCount = 0
---@param rhs string ---@param rhs string
local function runTextMapping(rhs) local function runTextMapping(rhs)
vim.keymap.set("", "<Plug>(NotifyTempRightClickMap)", rhs) vim.keymap.set("", "<Plug>(NotifyTempRightClickMap)", rhs)
vim.cmd([[exec "norm \<Plug>(NotifyTempRightClickMap)"]]) vim.cmd([[exec "norm \<Plug>(NotifyTempRightClickMap)"]])
vim.api.nvim_del_keymap("", "<Plug>(NotifyTempRightClickMap)") vim.api.nvim_del_keymap("", "<Plug>(NotifyTempRightClickMap)")
end end
local function runPassthruMapping() local function runPassthruMapping()
if type(oldRightClick) == "function" then if type(oldRightClick) == "function" then
oldRightClick() oldRightClick()
elseif type(oldRightClick) == "string" then elseif type(oldRightClick) == "string" then
runTextMapping(oldRightClick) runTextMapping(oldRightClick)
else else
error("Unknown Type") error("Unknown Type")
end end
end end
local function makeCloseMap(windowHandle) local function makeCloseMap(windowHandle)
openWindowCount = openWindowCount + 1 openWindowCount = openWindowCount + 1
table.insert(windows, windowHandle) table.insert(windows, windowHandle)
if openWindowCount == 1 then if openWindowCount == 1 then
createOldRightClick() createOldRightClick()
vim.keymap.set("", "<RightMouse>", function() vim.keymap.set("", "<RightMouse>", function()
for _, v in pairs(windows) do for _, v in pairs(windows) do
local _pos = vim.api.nvim_win_get_position(v) local _pos = vim.api.nvim_win_get_position(v)
local min_y = _pos[1] local min_y = _pos[1]
local min_x = _pos[2] local min_x = _pos[2]
local max_x = vim.api.nvim_win_get_width(v) + min_x local max_x = vim.api.nvim_win_get_width(v) + min_x
local max_y = vim.api.nvim_win_get_height(v) + min_y local max_y = vim.api.nvim_win_get_height(v) + min_y
local pos = vim.fn.getmousepos() local pos = vim.fn.getmousepos()
local x = pos.screencol local x = pos.screencol
local y = pos.screenrow local y = pos.screenrow
-- vim.notify(string.format("%s, %s, %s, %s, %s, %s", min_x, max_x, min_y, max_y, x, y)) -- vim.notify(string.format("%s, %s, %s, %s, %s, %s", min_x, max_x, min_y, max_y, x, y))
if (x >= min_x and x <= max_x) and (y >= min_y and y <= max_y) then if (x >= min_x and x <= max_x) and (y >= min_y and y <= max_y) then
vim.api.nvim_win_close(v, true) vim.api.nvim_win_close(v, true)
return return
end end
end end
runPassthruMapping() runPassthruMapping()
end) end)
end end
end end
local function removeCloseMap(winHandle) local function removeCloseMap(winHandle)
openWindowCount = openWindowCount - 1 openWindowCount = openWindowCount - 1
local index = indexOf(windows, winHandle) local index = indexOf(windows, winHandle)
if index ~= -1 then if index ~= -1 then
table.remove(windows, index) table.remove(windows, index)
else else
vim.notify("how the fuck") vim.notify("how the fuck")
end end
if openWindowCount == 0 then if openWindowCount == 0 then
vim.api.nvim_del_keymap("", "<RightMouse>") vim.api.nvim_del_keymap("", "<RightMouse>")
vim.keymap.set("n", "<RightMouse>", oldRightClick) vim.keymap.set("n", "<RightMouse>", oldRightClick)
oldRightClick = nil oldRightClick = nil
end end
end end
require("notify").setup({ require("notify").setup({
max_width = 65, max_width = 65,
max_height = 7, max_height = 7,
on_open = makeCloseMap, on_open = makeCloseMap,
on_close = removeCloseMap, on_close = removeCloseMap,
}) })
vim.notify = require("notify") vim.notify = require("notify")
require("noice").setup({ require("noice").setup({
cmdline = { cmdline = {
enabled = true, -- enables the Noice cmdline UI 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 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 opts = {}, -- global options for the cmdline. See section on views
---@type table<string, CmdlineFormat> ---@type table<string, CmdlineFormat>
format = { format = {
-- conceal: (default=true) This will hide the text in the cmdline that matches the pattern. -- conceal: (default=true) This will hide the text in the cmdline that matches the pattern.
-- view: (default is cmdline view) -- view: (default is cmdline view)
-- opts: any options passed to the view -- opts: any options passed to the view
-- icon_hl_group: optional hl_group for the icon -- icon_hl_group: optional hl_group for the icon
-- title: set to anything or empty string to hide -- title: set to anything or empty string to hide
cmdline = { pattern = "^:", icon = "", lang = "vim" }, cmdline = { pattern = "^:", icon = "", lang = "vim" },
search_down = { kind = "search", pattern = "^/", icon = " ", lang = "regex" }, search_down = { kind = "search", pattern = "^/", icon = " ", lang = "regex" },
search_up = { kind = "search", pattern = "^%?", icon = " ", lang = "regex" }, search_up = { kind = "search", pattern = "^%?", icon = " ", lang = "regex" },
filter = { pattern = "^:%s*!", icon = "$", lang = "bash" }, filter = { pattern = "^:%s*!", icon = "$", lang = "bash" },
lua = { pattern = { "^:%s*lua%s+", "^:%s*lua%s*=%s*", "^:%s*=%s*" }, icon = "", lang = "lua" }, lua = { pattern = { "^:%s*lua%s+", "^:%s*lua%s*=%s*", "^:%s*=%s*" }, icon = "", lang = "lua" },
help = { pattern = "^:%s*he?l?p?%s+", icon = "" }, help = { pattern = "^:%s*he?l?p?%s+", icon = "" },
input = { view = "cmdline_input", icon = "󰥻 " }, -- Used by input() input = { view = "cmdline_input", icon = "󰥻 " }, -- Used by input()
-- lua = false, -- to disable a format, set to `false` -- lua = false, -- to disable a format, set to `false`
}, },
}, },
messages = { messages = {
-- NOTE: If you enable messages, then the cmdline is enabled automatically. -- NOTE: If you enable messages, then the cmdline is enabled automatically.
-- This is a current Neovim limitation. -- This is a current Neovim limitation.
enabled = true, -- enables the Noice messages UI enabled = true, -- enables the Noice messages UI
view = "notify", -- default view for messages view = "notify", -- default view for messages
view_error = "notify", -- view for errors view_error = "notify", -- view for errors
view_warn = "notify", -- view for warnings view_warn = "notify", -- view for warnings
view_history = "messages", -- view for :messages view_history = "messages", -- view for :messages
view_search = "virtualtext", -- view for search count messages. Set to `false` to disable view_search = "virtualtext", -- view for search count messages. Set to `false` to disable
}, },
popupmenu = { popupmenu = {
enabled = true, -- enables the Noice popupmenu UI enabled = true, -- enables the Noice popupmenu UI
---@type 'nui'|'cmp' ---@type 'nui'|'cmp'
backend = "nui", -- backend to use to show regular cmdline completions backend = "nui", -- backend to use to show regular cmdline completions
---@type NoicePopupmenuItemKind|false ---@type NoicePopupmenuItemKind|false
-- Icons for completion item kinds (see defaults at noice.config.icons.kinds) -- Icons for completion item kinds (see defaults at noice.config.icons.kinds)
kind_icons = {}, -- set to `false` to disable icons kind_icons = {}, -- set to `false` to disable icons
}, },
-- default options for require('noice').redirect -- default options for require('noice').redirect
-- see the section on Command Redirection -- see the section on Command Redirection
---@type NoiceRouteConfig ---@type NoiceRouteConfig
redirect = { redirect = {
view = "popup", view = "popup",
filter = { event = "msg_show" }, filter = { event = "msg_show" },
}, },
-- You can add any custom commands below that will be available with `:Noice command` -- You can add any custom commands below that will be available with `:Noice command`
---@type table<string, NoiceCommand> ---@type table<string, NoiceCommand>
commands = { commands = {
history = { history = {
-- options for the message history that you get with `:Noice` -- options for the message history that you get with `:Noice`
view = "split", view = "split",
opts = { enter = true, format = "details" }, opts = { enter = true, format = "details" },
filter = { filter = {
any = { any = {
{ event = "notify" }, { event = "notify" },
{ error = true }, { error = true },
{ warning = true }, { warning = true },
{ event = "msg_show", kind = { "" } }, { event = "msg_show", kind = { "" } },
{ event = "lsp", kind = "message" }, { event = "lsp", kind = "message" },
}, },
}, },
}, },
-- :Noice last -- :Noice last
last = { last = {
view = "popup", view = "popup",
opts = { enter = true, format = "details" }, opts = { enter = true, format = "details" },
filter = { filter = {
any = { any = {
{ event = "notify" }, { event = "notify" },
{ error = true }, { error = true },
{ warning = true }, { warning = true },
{ event = "msg_show", kind = { "" } }, { event = "msg_show", kind = { "" } },
{ event = "lsp", kind = "message" }, { event = "lsp", kind = "message" },
}, },
}, },
filter_opts = { count = 1 }, filter_opts = { count = 1 },
}, },
-- :Noice errors -- :Noice errors
errors = { errors = {
-- options for the message history that you get with `:Noice` -- options for the message history that you get with `:Noice`
view = "popup", view = "popup",
opts = { enter = true, format = "details" }, opts = { enter = true, format = "details" },
filter = { error = true }, filter = { error = true },
filter_opts = { reverse = true }, filter_opts = { reverse = true },
}, },
all = { all = {
-- options for the message history that you get with `:Noice` -- options for the message history that you get with `:Noice`
view = "split", view = "split",
opts = { enter = true, format = "details" }, opts = { enter = true, format = "details" },
filter = {}, filter = {},
}, },
}, },
notify = { notify = {
-- Noice can be used as `vim.notify` so you can route any notification like other messages -- Noice can be used as `vim.notify` so you can route any notification like other messages
-- Notification messages have their level and other properties set. -- Notification messages have their level and other properties set.
-- event is always "notify" and kind can be any log level as a string -- event is always "notify" and kind can be any log level as a string
-- The default routes will forward notifications to nvim-notify -- The default routes will forward notifications to nvim-notify
-- Benefit of using Noice for this is the routing and consistent history view -- Benefit of using Noice for this is the routing and consistent history view
enabled = true, enabled = true,
view = "notify", view = "notify",
}, },
lsp = { lsp = {
progress = { progress = {
enabled = true, enabled = true,
-- Lsp Progress is formatted using the builtins for lsp_progress. See config.format.builtin -- 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. -- See the section on formatting for more details on how to customize.
--- @type NoiceFormat|string --- @type NoiceFormat|string
format = "lsp_progress", format = "lsp_progress",
--- @type NoiceFormat|string --- @type NoiceFormat|string
format_done = "lsp_progress_done", format_done = "lsp_progress_done",
throttle = 1000 / 30, -- frequency to update lsp progress message throttle = 1000 / 30, -- frequency to update lsp progress message
view = "mini", view = "mini",
}, },
override = { override = {
-- override the default lsp markdown formatter with Noice -- override the default lsp markdown formatter with Noice
["vim.lsp.util.convert_input_to_markdown_lines"] = false, ["vim.lsp.util.convert_input_to_markdown_lines"] = false,
-- override the lsp markdown formatter with Noice -- override the lsp markdown formatter with Noice
["vim.lsp.util.stylize_markdown"] = false, ["vim.lsp.util.stylize_markdown"] = false,
-- override cmp documentation with Noice (needs the other options to work) -- override cmp documentation with Noice (needs the other options to work)
["cmp.entry.get_documentation"] = false, ["cmp.entry.get_documentation"] = false,
}, },
hover = { hover = {
enabled = true, enabled = true,
silent = true, -- set to true to not show a message if hover is not available silent = true, -- set to true to not show a message if hover is not available
view = nil, view = nil,
---@type NoiceViewOptions ---@type NoiceViewOptions
opts = {}, opts = {},
}, },
signature = { signature = {
enabled = true, enabled = true,
auto_open = { auto_open = {
enabled = true, enabled = true,
trigger = true, -- Automatically show signature help when typing a trigger character from the LSP 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 luasnip = true, -- Will open signature help when jumping to Luasnip insert nodes
throttle = 50, -- Debounce lsp signature help request by 50ms throttle = 50, -- Debounce lsp signature help request by 50ms
}, },
view = nil, -- when nil, use defaults from documentation view = nil, -- when nil, use defaults from documentation
---@type NoiceViewOptions ---@type NoiceViewOptions
opts = {}, -- merged with defaults from documentation opts = {}, -- merged with defaults from documentation
}, },
message = { message = {
-- Messages shown by lsp servers -- Messages shown by lsp servers
enabled = true, enabled = true,
view = "notify", view = "notify",
opts = {}, opts = {},
}, },
-- defaults for hover and signature help -- defaults for hover and signature help
documentation = { documentation = {
view = "hover", view = "hover",
---@type NoiceViewOptions ---@type NoiceViewOptions
opts = { opts = {
lang = "markdown", lang = "markdown",
replace = true, replace = true,
render = "plain", render = "plain",
format = { "{message}" }, format = { "{message}" },
win_options = { concealcursor = "n", conceallevel = 3 }, win_options = { concealcursor = "n", conceallevel = 3 },
}, },
}, },
}, },
markdown = { markdown = {
hover = { hover = {
["|(%S-)|"] = vim.cmd.help, -- vim help links ["|(%S-)|"] = vim.cmd.help, -- vim help links
["%[.-%]%((%S-)%)"] = require("noice.util").open, -- markdown links ["%[.-%]%((%S-)%)"] = require("noice.util").open, -- markdown links
}, },
highlights = { highlights = {
["|%S-|"] = "@text.reference", ["|%S-|"] = "@text.reference",
["@%S+"] = "@parameter", ["@%S+"] = "@parameter",
["^%s*(Parameters:)"] = "@text.title", ["^%s*(Parameters:)"] = "@text.title",
["^%s*(Return:)"] = "@text.title", ["^%s*(Return:)"] = "@text.title",
["^%s*(See also:)"] = "@text.title", ["^%s*(See also:)"] = "@text.title",
["{%S-}"] = "@parameter", ["{%S-}"] = "@parameter",
}, },
}, },
health = { health = {
checker = true, -- Disable if you don't want health checks to run checker = true, -- Disable if you don't want health checks to run
}, },
---@type NoicePresets ---@type NoicePresets
presets = { presets = {
-- you can enable a preset by setting it to true, or a table that will override the preset config -- you can enable a preset by setting it to true, or a table that will override the preset config
-- you can also add custom presets that you can enable/disable with enabled=true -- you can also add custom presets that you can enable/disable with enabled=true
bottom_search = false, -- use a classic bottom cmdline for search bottom_search = false, -- use a classic bottom cmdline for search
command_palette = false, -- position the cmdline and popupmenu together command_palette = false, -- position the cmdline and popupmenu together
long_message_to_split = false, -- long messages will be sent to a split long_message_to_split = false, -- long messages will be sent to a split
inc_rename = false, -- enables an input dialog for inc-rename.nvim inc_rename = false, -- enables an input dialog for inc-rename.nvim
lsp_doc_border = false, -- add a border to hover docs and signature help lsp_doc_border = false, -- add a border to hover docs and signature help
}, },
throttle = 1000 / 30, -- how frequently does Noice need to check for ui updates? This has no effect when in blocking mode. throttle = 1000 / 30, -- how frequently does Noice need to check for ui updates? This has no effect when in blocking mode.
---@type NoiceConfigViews ---@type NoiceConfigViews
views = {}, ---@see section on views views = {}, ---@see section on views
---@type NoiceRouteConfig[] ---@type NoiceRouteConfig[]
routes = {}, --- @see section on routes routes = {}, --- @see section on routes
---@type table<string, NoiceFilter> ---@type table<string, NoiceFilter>
status = {}, --- @see section on statusline components status = {}, --- @see section on statusline components
---@type NoiceFormatOptions ---@type NoiceFormatOptions
format = {}, --- @see section on formatting format = {}, --- @see section on formatting
}) })