feat(home): Add neovim keymaps, improve readability
This commit is contained in:
parent
f5b01e9f8f
commit
c3327f0152
@ -38,20 +38,36 @@
|
||||
};
|
||||
|
||||
plugins = {
|
||||
guess-indent.enable = true;
|
||||
guess-indent = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
copilot-lua = {
|
||||
enable = true;
|
||||
suggestion = {
|
||||
autoTrigger = true;
|
||||
keymap = {
|
||||
accept = "<M-Right>";
|
||||
acceptLine = "<M-l>";
|
||||
acceptWord = "<M-w>";
|
||||
};
|
||||
suggestion.autoTrigger = true;
|
||||
suggestion.keymap = {
|
||||
accept = "<M-Right>";
|
||||
acceptLine = "<M-l>";
|
||||
acceptWord = "<M-w>";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
keymaps = [
|
||||
{
|
||||
mode = "n";
|
||||
key = ";";
|
||||
action = ":";
|
||||
}
|
||||
{
|
||||
mode = "n";
|
||||
key = "<Esc>";
|
||||
action = "<Cmd>nohlsearch<CR>";
|
||||
options = {
|
||||
silent = true;
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
mpv = {
|
||||
|
Loading…
Reference in New Issue
Block a user