16 lines
243 B
Nix
16 lines
243 B
Nix
{
|
|
programs.nixvim = {
|
|
globals = {
|
|
clipboard = "osc52";
|
|
};
|
|
opts = {
|
|
expandtab = true;
|
|
ignorecase = true;
|
|
mouse = "";
|
|
relativenumber = true;
|
|
shiftwidth = 2;
|
|
smartcase = true;
|
|
};
|
|
};
|
|
}
|