Files
nixos-config/modules/home/neovim/options.nix
Christoph Schmatzler f9adfe7c7e fix tab
Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
2025-11-02 13:50:35 +01:00

18 lines
246 B
Nix

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