nixos/home/programs/nvim/plugins/ui.nix
2025-02-08 13:33:41 +07:00

13 lines
266 B
Nix

{ pkgs, ... }: {
home.packages = with pkgs; [ ctags ];
programs.nixvim.plugins = {
web-devicons.enable = true;
noice.enable = true;
gitsigns = {
enable = true;
settings.current_line_blame = false;
};
trouble.enable = true;
};
}