summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d195d49)
raw | patch | inline | side by side (parent: d195d49)
author | Jonas Fonseca <fonseca@diku.dk> | |
Fri, 22 Jun 2007 15:04:45 +0000 (17:04 +0200) | ||
committer | Jonas Fonseca <fonseca@diku.dk> | |
Fri, 22 Jun 2007 15:04:45 +0000 (17:04 +0200) |
contrib/tigrc | [new file with mode: 0644] | patch | blob |
tig.spec.in | patch | blob | history | |
tigrc | [deleted file] | patch | blob | history |
diff --git a/contrib/tigrc b/contrib/tigrc
--- /dev/null
+++ b/contrib/tigrc
@@ -0,0 +1,77 @@
+#
+# Base configuration
+#
+# Syntax: set <option> = <value>
+
+set show-rev-graph = yes # Show revision graph?
+set line-number-interval = 5 # Interval between line numbers
+set tab-size = 8 # Number of spaces pr tab
+set commit-encoding = UTF-8 # Commit encoding
+
+#
+# Key configuration
+#
+# Syntax: bind <keymap> <key> <request>
+
+bind main w scroll-line-up
+bind main s scroll-line-down
+
+bind diff a previous
+bind diff d next
+bind diff b move-first-line
+
+bind generic g view-next
+
+#
+# Color configuration
+#
+# Syntax: color <line> <color> <color> [<attribute>]
+
+# Diff colors
+color diff-header yellow default
+color diff-index blue default
+color diff-chunk magenta default
+color diff-add green default
+color diff-del red default
+color diff-oldmode yellow default
+color diff-newmode yellow default
+color diff-copy-from yellow default
+color diff-copy-to yellow default
+color diff-rename-from yellow default
+color diff-rename-to yellow default
+color diff-similarity yellow default
+color diff-dissimilarity yellow default
+color diff-tree blue default
+
+# Pretty print commit header
+color pp-author cyan default
+color pp-commit magenta default
+color pp-merge blue default
+color pp-date yellow default
+color pp-adate yellow default
+color pp-cdate yellow default
+
+# Raw commit header
+color commit green default
+color parent blue default
+color tree blue default
+color author cyan default
+color committer magenta default
+
+# Misc
+color signoff yellow default
+
+# UI colors
+color default default default
+color cursor white green
+color status green default
+color title-blur white blue
+color title-focus white blue bold
+color main-date blue default
+color main-author green default
+color main-commit default default
+color main-delim magenta default
+color main-tag magenta default bold
+color main-ref cyan default bold
+
+# You can almost use vim: ft=muttrc
diff --git a/tig.spec.in b/tig.spec.in
index 2385fb8a3a7220949e5bc643de73c280dec4f716..d613870a8462320bca1b8e91a49e708b54f4d47a 100644 (file)
--- a/tig.spec.in
+++ b/tig.spec.in
%files
%defattr(-,root,root)
%{_bindir}/*
-%doc README COPYING INSTALL SITES BUGS TODO tigrc
+%doc README COPYING INSTALL SITES BUGS TODO contrib/tigrc
%{!?_without_docs: %{_mandir}/man1/*.1*}
%{!?_without_docs: %{_mandir}/man5/*.5*}
%{!?_without_docs: %doc *.html}
diff --git a/tigrc b/tigrc
--- a/tigrc
+++ /dev/null
@@ -1,77 +0,0 @@
-#
-# Base configuration
-#
-# Syntax: set <option> = <value>
-
-set show-rev-graph = yes # Show revision graph?
-set line-number-interval = 5 # Interval between line numbers
-set tab-size = 8 # Number of spaces pr tab
-set commit-encoding = UTF-8 # Commit encoding
-
-#
-# Key configuration
-#
-# Syntax: bind <keymap> <key> <request>
-
-bind main w scroll-line-up
-bind main s scroll-line-down
-
-bind diff a previous
-bind diff d next
-bind diff b move-first-line
-
-bind generic g view-next
-
-#
-# Color configuration
-#
-# Syntax: color <line> <color> <color> [<attribute>]
-
-# Diff colors
-color diff-header yellow default
-color diff-index blue default
-color diff-chunk magenta default
-color diff-add green default
-color diff-del red default
-color diff-oldmode yellow default
-color diff-newmode yellow default
-color diff-copy-from yellow default
-color diff-copy-to yellow default
-color diff-rename-from yellow default
-color diff-rename-to yellow default
-color diff-similarity yellow default
-color diff-dissimilarity yellow default
-color diff-tree blue default
-
-# Pretty print commit header
-color pp-author cyan default
-color pp-commit magenta default
-color pp-merge blue default
-color pp-date yellow default
-color pp-adate yellow default
-color pp-cdate yellow default
-
-# Raw commit header
-color commit green default
-color parent blue default
-color tree blue default
-color author cyan default
-color committer magenta default
-
-# Misc
-color signoff yellow default
-
-# UI colors
-color default default default
-color cursor white green
-color status green default
-color title-blur white blue
-color title-focus white blue bold
-color main-date blue default
-color main-author green default
-color main-commit default default
-color main-delim magenta default
-color main-tag magenta default bold
-color main-ref cyan default bold
-
-# You can almost use vim: ft=muttrc