12 lines
173 B
Nix
12 lines
173 B
Nix
{...}: {
|
|
programs.nixvim = {
|
|
enable = true;
|
|
globals.mapleader = " ";
|
|
|
|
opts = {
|
|
relativenumber = true;
|
|
};
|
|
|
|
colorschemes.ayu.enable = true;
|
|
};
|
|
}
|