18 lines
292 B
Nix
18 lines
292 B
Nix
{...}: {
|
|
enable = true;
|
|
vimdiffAlias = true;
|
|
colorschemes.catppuccin.enable = true;
|
|
|
|
opts = {
|
|
number = true;
|
|
relativenumber = true;
|
|
|
|
tabstop = 2;
|
|
shiftwidth = 2;
|
|
softtabstop = 2;
|
|
smartindent = true;
|
|
expandtab = true;
|
|
|
|
clipboard = "unnamedplus";
|
|
};
|
|
}
|