Add a few custom plugins and mappings

This commit is contained in:
Levente Krizsán 2024-08-27 21:35:31 +02:00
parent a22976111e
commit 51b1a17ea8
6 changed files with 115 additions and 13 deletions

View file

@ -0,0 +1,10 @@
-- https://github.com/ray-x/lsp_signature.nvim
return {
'ray-x/lsp_signature.nvim',
event = 'VeryLazy',
opts = {},
config = function(_, opts)
require('lsp_signature').setup(opts)
vim.keymap.set('i', '<C-g>', vim.lsp.buf.signature_help, { silent = true, noremap = true, desc = 'toggle function signature' })
end,
}

View file

@ -0,0 +1,39 @@
return {
'folke/noice.nvim',
event = 'VeryLazy',
opts = {
-- add any options here
},
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('noice').setup {
lsp = {
-- need to disable this because of `lsp-signature`
signature = {
enabled = false,
},
-- 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 = false, -- add a border to hover docs and signature help
},
}
end,
}

View file

@ -0,0 +1,6 @@
-- https://github.com/windwp/nvim-ts-autotag
return {
'windwp/nvim-ts-autotag',
opts = {},
event = 'VeryLazy',
}

View file

@ -0,0 +1,18 @@
return {
'christoomey/vim-tmux-navigator',
cmd = {
'TmuxNavigateLeft',
'TmuxNavigateDown',
'TmuxNavigateUp',
'TmuxNavigateRight',
'TmuxNavigatePrevious',
},
keys = {
{ '<c-h>', '<cmd>TmuxNavigateLeft<cr>' },
{ '<c-j>', '<cmd>TmuxNavigateDown<cr>' },
{ '<c-k>', '<cmd>TmuxNavigateUp<cr>' },
{ '<c-l>', '<cmd>TmuxNavigateRight<cr>' },
{ '<c-\\>', '<cmd>TmuxNavigatePrevious<cr>' },
},
}
-- vim: ts=2 sts=2 sw=2 et

View file

@ -0,0 +1,6 @@
-- https://github.com/folke/ts-comments.nvim
return {
'folke/ts-comments.nvim',
opts = {},
event = 'VeryLazy',
}