Make it possible to overwrite the default (terminal) colors
[tig] / tigrc.5.txt
... / ...
CommitLineData
1tigrc(5)
2========
3
4NAME
5----
6tigrc - tig user configuration file
7
8
9SYNOPSIS
10--------
11[verse]
12.............................................................................
13*set* 'variable' *=* 'value'
14*bind* 'keymap' 'key' 'action'
15*color* 'area' 'fgcolor' 'bgcolor' '[attributes]'
16.............................................................................
17
18
19DESCRIPTION
20-----------
21
22You can permanently set an option by putting it in the `~/.tigrc` file. The
23file consists of a series of 'commands'. Each line of the file may contain
24only one command.
25
26The hash mark ('#') is used as a 'comment' character. All text after the
27comment character to the end of the line is ignored. You can use comments to
28annotate your initialization file.
29
30
31Set command
32-----------
33
34A few selective variables can be configured via the set command. The syntax
35is:
36
37[verse]
38..............................................................................
39*set* variables *=* value
40..............................................................................
41
42Examples:
43
44--------------------------------------------------------------------------
45set show-rev-graph = yes # Show revision graph?
46set line-number-interval = 5 # Interval between line numbers
47set tab-size = 8 # Number of spaces per tab
48set encoding = "UTF-8" # Commit encoding
49--------------------------------------------------------------------------
50
51The type of variables are either bool, int, and string.
52
53Valid bool values::
54
55 To set a bool variable to true use either "1", "true", or "yes".
56 Any other value will set the variable to false.
57
58Valid int values::
59
60 A non-negative integer.
61
62Valid string values::
63
64 A string of characters. Optionally, use either ' or " as delimiters.
65
66Variables
67~~~~~~~~~
68
69The following variables can be set:
70
71'show-rev-graph' (bool)::
72
73 Show revision graph in the main view on start-up. Can be toggled with
74 'g'.
75
76'line-number-interval' (int)::
77
78 Interval between line numbers. Note, you have to toggle on line
79 numbering with 'n' or the `-n` command line option. The default is to
80 number every line.
81
82'tab-size' (int)::
83
84 Number of spaces per tab. The default is 8 spaces.
85
86'commit-encoding' (string)::
87
88 The encoding used for commits. The default is UTF-8. Not this option
89 is shadowed by the "i18n.commitencoding" option in `.git/config`.
90
91
92Bind command
93------------
94
95Using bind commands keys can be mapped to an action when pressed in a given
96key map. The syntax is:
97
98[verse]
99..............................................................................
100*bind* 'keymap' 'key' 'action'
101..............................................................................
102
103Examples:
104
105--------------------------------------------------------------------------
106# A few keybindings
107bind main w scroll-line-up
108bind main s scroll-line-down
109bind main space enter
110bind diff a previous
111bind diff d next
112bind diff b move-first-line
113# 'unbind' the default quit key binding
114bind main Q none
115# An external command to update from upstream
116bind generic F !git fetch
117# Cherry-pick current commit unto current branch
118bind generic C !git cherry-pick %(commit)
119--------------------------------------------------------------------------
120
121Keys are mapped by first searching the keybindings for the current view, then
122the keybindings for the *generic* keymap, and last the default keybindings.
123Thus, the view keybindings shadow the generic keybindings which Shadow the
124built-in keybindings.
125
126--
127
128Keymaps::
129
130Valid keymaps are: *main*, *diff*, *log*, *help*, *pager*, *status*, *stage*,
131and *generic*. Use *generic* to set key mapping in all keymaps.
132
133Key values::
134
135Key values should never be quoted. Use either the ASCII value or one of the
136following symbolic key names. Symbolic key names are case insensitive, Use
137*Hash* to bind to the `#` key, since the hash mark is used as a comment
138character.
139
140*Enter*, *Space*, *Backspace*, *Tab*, *Escape*, *Left*, *Right*, *Up*, *Down*,
141*Insert*, *Delete*, *Hash*, *Home*, *End*, *PageUp*, *PageDown*, *F1*, *F2*, *F3*,
142*F4*, *F5*, *F6*, *F7*, *F8*, *F9*, *F10*, *F11*, *F12*.
143
144Action names::
145
146Valid action names are described below. Note, all names are
147case-insensitive, and you may use '-', '_', and '.' interchangeably,
148e.g. "view-main", "View.Main", and "VIEW_MAIN" are the same.
149
150--
151
152Actions
153~~~~~~~
154
155Apart from the action names listed below, all actions starting with a '!' will
156be available as an external command. External commands can contain variable
157names that will be substituted before the command is run. Valid variable names
158are "%(head)", "%(commit)", and "%(blob)".
159
160As an example, the following external command will save the current commit as
161a patch file: "!git format-patch %(commit)^..%(commit)".
162
163ifdef::backend-xhtml11[]
164[frame="none"]
165`-----------------------`-----------------------------------------------------
166endif::backend-xhtml11[]
167View switching:
168------------------------------------------------------------------------------
169view-main Show main view
170view-diff Show diff view
171view-log Show log view
172view-tree Show tree view
173view-blob Show blob view
174view-status Show status view
175view-stage Show stage view
176view-pager Show pager view
177view-help Show help page
178------------------------------------------------------------------------------
179
180ifdef::backend-xhtml11[]
181[frame="none"]
182`-----------------------`-----------------------------------------------------
183endif::backend-xhtml11[]
184View manipulation:
185------------------------------------------------------------------------------
186enter Enter current line and scroll
187next Move to next
188previous Move to previous
189view-next Move focus to next view
190refresh Reload and refresh view
191view-close Close the current view
192quit Close all views and quit
193------------------------------------------------------------------------------
194
195ifdef::backend-xhtml11[]
196[frame="none"]
197`-----------------------`-----------------------------------------------------
198endif::backend-xhtml11[]
199Cursor navigation:
200------------------------------------------------------------------------------
201move-up Move cursor one line up
202move-down Move cursor one line down
203move-page-down Move cursor one page down
204move-page-up Move cursor one page up
205move-first-line Move cursor to first line
206move-last-line Move cursor to last line
207------------------------------------------------------------------------------
208
209ifdef::backend-xhtml11[]
210[frame="none"]
211`-----------------------`-----------------------------------------------------
212endif::backend-xhtml11[]
213Scrolling:
214------------------------------------------------------------------------------
215scroll-line-up Scroll one line up
216scroll-line-down Scroll one line down
217scroll-page-eup Scroll one page up
218scroll-page-down Scroll one page down
219------------------------------------------------------------------------------
220
221ifdef::backend-xhtml11[]
222[frame="none"]
223`-----------------------`-----------------------------------------------------
224endif::backend-xhtml11[]
225Searching:
226------------------------------------------------------------------------------
227search Search the view
228search-back Search backwards in the view
229find-next Find next search match
230find-prev Find previous search match
231------------------------------------------------------------------------------
232
233ifdef::backend-xhtml11[]
234[frame="none"]
235`-----------------------`-----------------------------------------------------
236endif::backend-xhtml11[]
237Misc:
238------------------------------------------------------------------------------
239none Do nothing
240prompt Bring up the prompt
241screen-redraw Redraw the screen
242screen-resize Resize the screen
243show-version Show version information
244stop-loading Stop all loading views
245toggle-lineno Toggle line numbers
246toggle-rev-graph Toggle revision graph visualization
247status-update Update file status
248status-merge Resolve unmerged file
249tree-parent Switch to parent directory in tree view
250edit Open in editor
251------------------------------------------------------------------------------
252
253
254Color command
255-------------
256
257Color commands control highlighting and the user interface styles. If your
258terminal supports color, these commands can be used to assign foreground and
259background combinations to certain areas. Optionally, an attribute can be
260given as the last parameter. The syntax is:
261
262[verse]
263..............................................................................
264*color* 'area' 'fgcolor' 'bgcolor' '[attributes]'
265..............................................................................
266
267Examples:
268
269------------------------------------------------------------------------------
270# Overwrite the default terminal colors to white on black.
271color default white black
272# Diff colors
273color diff-header yellow default
274color diff-index blue default
275color diff-chunk magenta default
276# A strange looking cursor line
277color cursor red default underline
278# UI colors
279color title-blur white blue
280color title-focus white blue bold
281------------------------------------------------------------------------------
282
283Area names::
284
285 Valid area names are described below. Note, all names are
286 case-insensitive, and you may use '-', '_', and '.' interchangeably,
287 e.g. "Diff-Header", "DIFF_HEADER", and "diff.header" are the same.
288
289Color names::
290
291 Valid colors include: *white*, *black*, *green*, *magenta*, *blue*,
292 *cyan*, *yellow*, *red*, *default*. Use *default* to refer to the
293 default terminal colors.
294
295Attribute names::
296
297 Valid attributes include: *normal*, *blink*, *bold*, *dim*, *reverse*,
298 *standout*, and *underline*. Note, not all attributes may be supported
299 by the terminal.
300
301UI colors
302~~~~~~~~~
303
304--
305
306Default terminal colors::
307
308The colors and attributes to be used for the text that is not highlighted or
309that specify the use of the default terminal colors can be controlled by
310setting the *default* color option.
311
312Use the *default* color to use the colors configured for the terminal. This is
313the default and recommended if you are using a terminal with a transparent
314background.
315
316Status window colors::
317
318Appearance of the bottom window showing info messages.
319
320*status*
321
322Title window colors::
323
324Appearance of the title windows when they are attached
325to any backgrounded windows and the current window.
326
327*title-blur*, *title-focus*
328
329Cursor line colors::
330
331*cursor*
332
333Main view specific::
334
335Appearance of the various columns in the main view, including the '~' used for
336delimiting long author names and labels for tag and branch references.
337
338*main-date*, *main-author*, *main-commit*, *main-delim*, *main-tag*,
339*main-ref*, *main-remote*, *main-revgraph*
340
341--
342
343Highlighting
344~~~~~~~~~~~~
345
346--
347
348Diff markup::
349
350Options concerning diff start, chunks and lines added and deleted.
351
352*diff-header*, *diff-chunk*, *diff-add*, *diff-del*
353
354Enhanced git diff markup::
355
356Extra diff information emitted by the git diff machinery, such as mode
357changes, rename detection, and similarity.
358
359*diff-oldmode*, *diff-newmode*, *diff-copy-from*, *diff-copy-to*,
360*diff-rename-from*, *diff-rename-to*, *diff-similarity*, *diff-dissimilarity*
361*diff-tree*, *diff-index*
362
363Pretty print commit headers::
364
365Commit diffs and the revision logs are usually formatted using pretty printed
366headers , unless `--pretty=raw` was given. This includes lines, such as merge
367info, commit ID, and author and committer date.
368
369*pp-author*, *pp-commit*, *pp-merge*, *pp-date*, *pp-adate*, *pp-cdate*,
370*pp-refs*
371
372Raw commit header::
373
374Usually shown when `--pretty=raw` is given, however 'commit' is pretty much
375omnipresent.
376
377*commit*, *parent*, *tree*, *author*, *committer*
378
379Commit message::
380
381For now only `Signed-off-by` and `Acked-by` lines are colorized.
382
383*signoff*, *acked*
384
385Tree markup::
386
387Colors for information of the tree view.
388
389*tree-dir*, *tree-file*
390
391Status markup::
392
393Colors used in the status view.
394
395*stat-section*, *stat-none*, *stat-staged*, *stat-unstaged*, *stat-untracked*
396
397--
398
399COPYRIGHT
400---------
401Copyright (c) 2006-2007 Jonas Fonseca <fonseca@diku.dk>
402
403Licensed under the terms of the GNU General Public License.
404
405SEE ALSO
406--------
407gitlink:tig[1] and the http://jonas.nitro.dk/tig/manual.html[tig manual].