nixconf/home-manager/nixvim.nix
Gabriella Bere 0eea3fe016 attempted to sync nvim clipboard with system clipboard, gave up.
corrected eza config due to updated non-boolean value for eza.icons
2024-10-23 22:31:40 +01:00

8 lines
158 B
Nix

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