added neocord and nvim-lightbulb to nixvim config

This commit is contained in:
pagedmov
2024-11-09 16:06:06 -05:00
parent 231112356c
commit d38da56ba2
7 changed files with 46 additions and 1 deletions

View File

@@ -1,6 +1,16 @@
{
programs.nixvim = {
keymaps = [
{
action = "<cmd>lua vim.lsp.buf.code_action()<CR>";
key = "!ca";
mode = "n";
}
{
action = "<cmd>Telescope<CR>";
key = "!t";
mode = "n";
}
{
action = "<cmd>lua vim.lsp.buf.format()<CR>";
key = "!fmt";