nixos-config/home-manager/modules/tig.nix

21 lines
580 B
Nix
Raw Permalink Normal View History

2023-12-18 20:00:43 +00:00
{
home.file."tig_config" = {
enable=true;
target="/home/fleaz/.config/tig/config";
text=''
# Use Git's default (reverse chronological) order, never automatically
# use topo-order for the commit graph
set commit-order = default
# Limit number of commits loaded by default to 1000
set main-options = -n 1000
# Don't show staged and unstaged changes in the main view
set show-changes = no
# Optionally, use the old and faster but less acurate graph renderer
#set main-view-commit-title-graph = v1
'';
};
}