Files
nixos-config/modules/home-manager/base/editors/neovim/options.nix
2025-08-12 19:08:49 +00:00

17 lines
278 B
Nix

{
programs.nixvim = {
globals = {
# clipboard = "osc52";
};
opts = {
clipboard = "unnamedplus";
expandtab = true;
ignorecase = true;
mouse = "";
relativenumber = true;
shiftwidth = 2;
smartcase = true;
};
};
}