From 377087cb762599cc1afcb940b81df4d5bfab7689 Mon Sep 17 00:00:00 2001 From: Anton Novojilov Date: Fri, 21 Jun 2024 12:40:40 +0300 Subject: [PATCH] Improve tigrc with custom color scheme --- .tigrc | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ install.sh | 2 +- 2 files changed, 66 insertions(+), 1 deletion(-) diff --git a/.tigrc b/.tigrc index 70f565d..3ef96b5 100644 --- a/.tigrc +++ b/.tigrc @@ -4,3 +4,68 @@ set line-graphics = utf-8 # Custom date format in main view set main-view-date = custom set main-view-date-format = "%Y-%m-%d %H:%M" + +# Custom color scheme +color cursor 220 235 bold +color date 242 default +color author default default bold +color main-head 203 default +color status 242 default +color title-focus default 238 bold +color title-blur white 235 + +color "diff --" 240 default +color "index " 240 default +color "old file mode " 240 default +color "new file mode " 240 default +color "deleted file mode " 240 default +color "copy from " 240 default +color "copy to " 240 default +color "rename from " 240 default +color "rename to " 240 default +color "similarity " 240 default +color "dissimilarity " 240 default + +color "---" 245 default bold +color "--- " 245 default bold +color "+++ " 245 default bold +color "@@" 72 default + +color "\ No newline at end of file" black 98 + +color "Author: " white default bold +color "Commit: " white default bold +color "Tagger: " white default bold +color "Merge: " white default bold +color "Date: " white default bold +color "AuthorDate: " white default bold +color "CommitDate: " white default bold +color "TaggerDate: " white default bold +color "Refs: " white default bold +color "Reflog: " white default bold +color "Reflog message: " white default bold + +color "stash@{" white default bold +color "commit " white default bold +color "parent " white default bold +color "tree " white default bold +color "committer " white default bold + +color " Signed-off-by:" white default bold +color " Acked-by:" white default bold +color " Reviewed-by:" white default bold +color " Helped-by:" white default bold +color " Reported-by:" white default bold +color " Mentored-by:" white default bold +color " Suggested-by:" white default bold +color " Cc:" white default bold +color " Noticed-by:" white default bold +color " Tested-by:" white default bold +color " Improved-by:" white default bold +color " Thanks-to:" white default bold +color " Based-on-patch-by:" white default bold +color " Contributions-by:" white default bold +color " Co-authored-by:" white default bold +color " Requested-by:" white default bold +color " Original-patch-by:" white default bold +color " Inspired-by:" white default bold diff --git a/install.sh b/install.sh index aa8bce0..10b6466 100755 --- a/install.sh +++ b/install.sh @@ -7,7 +7,7 @@ set -e ################################################################################ -VERSION="2.4.5" +VERSION="2.4.6" ################################################################################