refactor(home): move neovim config to modules/
This commit is contained in:
parent
8f9b03ecb0
commit
c55400247b
@ -3,6 +3,7 @@
|
||||
imports = [
|
||||
./modules/nethack.nix
|
||||
./modules/firefox.nix
|
||||
./modules/neovim.nix
|
||||
];
|
||||
|
||||
programs = {
|
||||
@ -28,48 +29,6 @@
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
nixvim = {
|
||||
enable = true;
|
||||
|
||||
colorschemes.nightfox = {
|
||||
enable = true;
|
||||
flavor = "nordfox";
|
||||
};
|
||||
|
||||
plugins = {
|
||||
guess-indent = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
copilot-lua = {
|
||||
enable = true;
|
||||
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 = {
|
||||
enable = true;
|
||||
};
|
||||
|
42
home/modules/neovim.nix
Normal file
42
home/modules/neovim.nix
Normal file
@ -0,0 +1,42 @@
|
||||
{
|
||||
programs.nixvim = {
|
||||
enable = true;
|
||||
|
||||
colorschemes.nightfox = {
|
||||
enable = true;
|
||||
flavor = "nordfox";
|
||||
};
|
||||
|
||||
plugins = {
|
||||
guess-indent = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
copilot-lua = {
|
||||
enable = true;
|
||||
suggestion.autoTrigger = true;
|
||||
suggestion.keymap = {
|
||||
accept = "<M-a>";
|
||||
acceptLine = "<M-l>";
|
||||
acceptWord = "<M-w>";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
keymaps = [
|
||||
{
|
||||
mode = "n";
|
||||
key = ";";
|
||||
action = ":";
|
||||
}
|
||||
{
|
||||
mode = "n";
|
||||
key = "<Esc>";
|
||||
action = "<Cmd>nohlsearch<CR>";
|
||||
options = {
|
||||
silent = true;
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user