16 lines
156 B
Nix
16 lines
156 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
vim = {
|
|
globals = {
|
|
mapleader = " ";
|
|
|
|
shiftwidth = 2;
|
|
tabstop = 2;
|
|
softtabstop = 2;
|
|
};
|
|
};
|
|
}
|