feat(nixvim): configure LSP completion and code actions

This commit is contained in:
lightly-toasted 2025-09-08 15:55:19 +09:00
parent d887ce84e1
commit 959d504283
2 changed files with 35 additions and 5 deletions

View file

@ -82,6 +82,12 @@
action = "<cmd>Telescope buffers<CR>";
options.desc = "Telescope: List Buffers";
}
{
mode = ["n" "v"];
key = "<leader>ca";
action = "<cmd>lua vim.lsp.buf.code_action()<CR>";
options.desc = "LSP Code Action";
}
];
};
}