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 = {
globalOpts = {
expandtab = true; expandtab = true;
shiftwidth = 2; shiftwidth = 2;
relativenumber = true; relativenumber = true;
mouse = ""; mouse = "";
clipboard = "osc52";
# 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
]