17 lines
284 B
Nix
17 lines
284 B
Nix
{pkgs,...}@args: {
|
|
enablePrintInit = true;
|
|
|
|
# extraPackages = with pkgs; [
|
|
# ];
|
|
opts = {
|
|
relativenumber = true;
|
|
number = true;
|
|
spell = false;
|
|
signcolumn = "yes";
|
|
wrap = false;
|
|
};
|
|
|
|
withNodeJs = args.withNojeJs or true;
|
|
|
|
# TODO: autocmnds necessary?
|
|
}
|