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