Files
nixos-config/modules/home/neovim/options.nix
Christoph Schmatzler c5f2af61a6 qup
Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
2025-09-02 12:59:18 +00:00

15 lines
216 B
Nix

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