21 lines
408 B
Nix
21 lines
408 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.nixvim = {
|
|
plugins = {
|
|
lsp = {
|
|
keymaps = {
|
|
diagnostic.open_float = "gl";
|
|
lspBuf = {
|
|
"gD" = "declaration";
|
|
"gd" = "definition";
|
|
"K" = "hover";
|
|
"gi" = "implementation";
|
|
"<leader>ca" = "code_action";
|
|
"<leader>rn" = "rename";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|