attempted to sync nvim clipboard with system clipboard, gave up.

corrected eza config due to updated non-boolean value for eza.icons
This commit is contained in:
Gabriella Bere 2024-10-23 22:31:40 +01:00
parent f61028f258
commit 0eea3fe016
2 changed files with 3 additions and 3 deletions

View file

@ -4,6 +4,6 @@
enable = true; enable = true;
enableZshIntegration = true; enableZshIntegration = true;
git = true; git = true;
icons = true; icons = "auto";
}; };
} }

View file

@ -1,8 +1,8 @@
{ config, pkgs, ... }: { config, pkgs, lib, ... }:
{ {
programs.nixvim = { programs.nixvim = {
enable = true; enable = true;
clipboard.register = "unnamedplus";
# plugins.neotree.enable = true; # plugins.neotree.enable = true;
}; };
} }