1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 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
|