dotfiles/.config/nvim/lua/brian/plugins/noice.lua
Claude 71571ef613
fix(nvim): move hover scroll keymaps to noice config
Move <C-j>/<C-k> scroll keymaps from LspAttach to noice plugin
keys for proper global binding that works with noice hover windows

https://claude.ai/code/session_01UcDoC4n6CWMttYFJPw17ie
2026-01-31 09:09:39 +00:00

76 lines
2.1 KiB
Lua

return {
'folke/noice.nvim',
event = 'VeryLazy',
opts = {
-- add any options here
lsp = {
-- 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
},
},
-- 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
},
},
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',
config = function()
require('notify').setup {
background_colour = '#000000',
}
end,
},
},
keys = {
{
'<leader>nd',
'<cmd>Noice dismiss<cr>',
mode = 'n',
desc = 'Dismiss all Noice notifications',
},
{
'<leader>nm',
':Noice<CR>',
mode = 'n',
desc = 'Show Noice Message History',
},
{
'<C-j>',
function()
if not require('noice.lsp').scroll(4) then
return '<C-j>'
end
end,
mode = { 'n', 'i', 's' },
silent = true,
expr = true,
desc = 'Scroll hover docs down',
},
{
'<C-k>',
function()
if not require('noice.lsp').scroll(-4) then
return '<C-k>'
end
end,
mode = { 'n', 'i', 's' },
silent = true,
expr = true,
desc = 'Scroll hover docs up',
},
},
}