mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com> Former-commit-id: 0d6390b18f38bdba346a1f92799884d209159b33
22 lines
415 B
Nix
22 lines
415 B
Nix
{
|
|
programs.nvf.settings.vim = {
|
|
viAlias = false;
|
|
vimAlias = true;
|
|
withNodeJs = true;
|
|
# syntaxHighlighting = true;
|
|
options = {
|
|
autoindent = true;
|
|
shiftwidth = 2;
|
|
signcolumn = "yes";
|
|
tabstop = 2;
|
|
softtabstop = 2;
|
|
wrap = false;
|
|
};
|
|
clipboard = {
|
|
enable = true;
|
|
registers = "unnamedplus";
|
|
providers.wl-copy.enable = true;
|
|
};
|
|
};
|
|
}
|