This commit is contained in:
Christoph Schmatzler
2025-08-11 21:27:07 +02:00
parent 8eda192948
commit 64e832d6b2
2 changed files with 13 additions and 11 deletions

View File

@@ -1,11 +1,15 @@
{ {
programs.nixvim.globalOpts = { programs.nixvim = {
expandtab = true; globalOpts = {
shiftwidth = 2; expandtab = true;
relativenumber = true; shiftwidth = 2;
mouse = ""; relativenumber = true;
clipboard = "osc52"; mouse = "";
# foldmethod = "expr"; # foldmethod = "expr";
# foldexpr = "nvim_treesitter#foldexpr()"; # foldexpr = "nvim_treesitter#foldexpr()";
};
globals = {
clipboard = "osc52";
};
}; };
} }

View File

@@ -1,4 +1,2 @@
{pkgs}: {pkgs}:
with pkgs; [ with pkgs; []
wl-clipboard
]