1
Fork 0

Migrate more neovim plugins from lua to nix

This commit is contained in:
Matei Adriel 2023-12-16 19:40:08 +01:00
parent 82c60dbf67
commit 40e0a096e8
No known key found for this signature in database
20 changed files with 481 additions and 538 deletions
home/features/neovim/config/lua/my/plugins

View file

@ -39,8 +39,8 @@ function M.on_attach(client, bufnr)
-- }}}
-- {{{ Go to declaration / references / implementation
nmap("gd", vim.lsp.buf.definition, "[G]o to [d]efinition")
nmap("gi", vim.lsp.buf.implementation, "[G]o to [i]mplementation")
nmap("gr", vim.lsp.buf.references, "[G]o to [r]eferences")
nmap("<leader>gi", vim.lsp.buf.implementation, "[G]o to [i]mplementation")
nmap("<leader>gr", vim.lsp.buf.references, "[G]o to [r]eferences")
-- }}}
-- {{{ Hover
-- Note: diagnostics are already covered in keymaps.lua