6 tigrc - tig user configuration file
12 .............................................................................
13 *set* 'variable' *=* 'value'
14 *bind* 'keymap' 'key' 'action'
15 *color* 'area' 'fgcolor' 'bgcolor' '[attributes]'
16 .............................................................................
22 You can permanently set an option by putting it in the `~/.tigrc` file. The
23 file consists of a series of 'commands'. Each line of the file may contain
26 The hash mark ('#') is used as a 'comment' character. All text after the
27 comment character to the end of the line is ignored. You can use comments to
28 annotate your initialization file.
34 A few selective variables can be configured via the set command. The syntax
38 ..............................................................................
39 *set* variables *=* value
40 ..............................................................................
44 --------------------------------------------------------------------------
45 set show-author = yes # Show author?
46 set show-date = yes # Show commit date?
47 set show-rev-graph = yes # Show revision graph?
48 set show-refs = yes # Show references?
49 set show-line-numbers = no # Show line numbers?
50 set author-width = 10 # Set width of the author column
51 set line-graphics = no # Disable graphics characters
52 set line-number-interval = 5 # Interval between line numbers
53 set tab-size = 8 # Number of spaces per tab
54 set encoding = "UTF-8" # Commit encoding
55 --------------------------------------------------------------------------
57 The type of variables are either bool, int, and string.
61 To set a bool variable to true use either "1", "true", or "yes".
62 Any other value will set the variable to false.
66 A non-negative integer.
70 A string of characters. Optionally, use either ' or " as delimiters.
75 The following variables can be set:
77 'show-author' (bool)::
79 'show-rev-graph' (bool)::
82 Whether to show author, date, revision graph, and references
83 (branches, tags, and remotes) in the main view on start-up. Can all be
86 'author-width' (int)::
88 Width of the author column.
90 'line-graphics' (bool)::
92 Whether to use graphic characters for line drawing.
94 'line-number-interval' (int)::
96 Interval between line numbers. Note, you have to toggle on line
97 numbering with 'n' or the `-n` command line option. The default is to
102 Number of spaces per tab. The default is 8 spaces.
104 'commit-encoding' (string)::
106 The encoding used for commits. The default is UTF-8. Not this option
107 is shadowed by the "i18n.commitencoding" option in `.git/config`.
113 Using bind commands keys can be mapped to an action when pressed in a given
114 key map. The syntax is:
117 ..............................................................................
118 *bind* 'keymap' 'key' 'action'
119 ..............................................................................
123 --------------------------------------------------------------------------
125 bind main w scroll-line-up
126 bind main s scroll-line-down
127 bind main space enter
130 bind diff b move-first-line
131 # 'unbind' the default quit key binding
133 # An external command to update from upstream
134 bind generic F !git fetch
135 # Cherry-pick current commit onto current branch
136 bind generic C !git cherry-pick %(commit)
137 --------------------------------------------------------------------------
139 Keys are mapped by first searching the keybindings for the current view, then
140 the keybindings for the *generic* keymap, and last the default keybindings.
141 Thus, the view keybindings shadow the generic keybindings which Shadow the
142 built-in keybindings.
148 Valid keymaps are: *main*, *diff*, *log*, *help*, *pager*, *status*, *stage*,
149 and *generic*. Use *generic* to set key mapping in all keymaps.
153 Key values should never be quoted. Use either the ASCII value or one of the
154 following symbolic key names. Symbolic key names are case insensitive, Use
155 *Hash* to bind to the `#` key, since the hash mark is used as a comment
158 *Enter*, *Space*, *Backspace*, *Tab*, *Escape*, *Left*, *Right*, *Up*, *Down*,
159 *Insert*, *Delete*, *Hash*, *Home*, *End*, *PageUp*, *PageDown*, *F1*, *F2*, *F3*,
160 *F4*, *F5*, *F6*, *F7*, *F8*, *F9*, *F10*, *F11*, *F12*.
164 Valid action names are described below. Note, all names are
165 case-insensitive, and you may use '-', '_', and '.' interchangeably,
166 e.g. "view-main", "View.Main", and "VIEW_MAIN" are the same.
173 Apart from the action names listed below, all actions starting with a '!' will
174 be available as an external command. External commands can contain variable
175 names that will be substituted before the command is run. Valid variable names
178 ifdef::backend-xhtml11[]
180 `-----------------------`-----------------------------------------------------
181 endif::backend-xhtml11[]
182 Browsing state variables
183 ------------------------------------------------------------------------------
184 %(head) The currently viewed 'head' ID. Defaults to HEAD
185 %(commit) The currently selected commit ID.
186 %(blob) The currently selected blob ID.
187 %(directory) The current directory path in the tree view; \
188 empty for the root directory.
189 %(file) The currently selected file.
190 %(ref) The reference given to blame or HEAD if undefined.
191 ------------------------------------------------------------------------------
193 As an example, the following external command will save the current commit as
194 a patch file: "!git format-patch -1 %(commit)".
196 ifdef::backend-xhtml11[]
198 `-----------------------`-----------------------------------------------------
199 endif::backend-xhtml11[]
201 ------------------------------------------------------------------------------
202 view-main Show main view
203 view-diff Show diff view
204 view-log Show log view
205 view-tree Show tree view
206 view-blob Show blob view
207 view-blame Show blame view
208 view-status Show status view
209 view-stage Show stage view
210 view-pager Show pager view
211 view-help Show help page
212 ------------------------------------------------------------------------------
214 ifdef::backend-xhtml11[]
216 `-----------------------`-----------------------------------------------------
217 endif::backend-xhtml11[]
219 ------------------------------------------------------------------------------
220 enter Enter current line and scroll
222 previous Move to previous
223 parent Move to parent
224 view-next Move focus to next view
225 refresh Reload and refresh view
226 maximize Maximize the current view
227 view-close Close the current view
228 quit Close all views and quit
229 ------------------------------------------------------------------------------
231 ifdef::backend-xhtml11[]
233 `-----------------------`-----------------------------------------------------
234 endif::backend-xhtml11[]
235 View specific actions:
236 ------------------------------------------------------------------------------
237 status-update Update file status
238 status-merge Resolve unmerged file
239 stage-next Find next chunk to stage
240 ------------------------------------------------------------------------------
242 ifdef::backend-xhtml11[]
244 `-----------------------`-----------------------------------------------------
245 endif::backend-xhtml11[]
247 ------------------------------------------------------------------------------
248 move-up Move cursor one line up
249 move-down Move cursor one line down
250 move-page-down Move cursor one page down
251 move-page-up Move cursor one page up
252 move-first-line Move cursor to first line
253 move-last-line Move cursor to last line
254 ------------------------------------------------------------------------------
256 ifdef::backend-xhtml11[]
258 `-----------------------`-----------------------------------------------------
259 endif::backend-xhtml11[]
261 ------------------------------------------------------------------------------
262 scroll-line-up Scroll one line up
263 scroll-line-down Scroll one line down
264 scroll-page-eup Scroll one page up
265 scroll-page-down Scroll one page down
266 ------------------------------------------------------------------------------
268 ifdef::backend-xhtml11[]
270 `-----------------------`-----------------------------------------------------
271 endif::backend-xhtml11[]
273 ------------------------------------------------------------------------------
274 search Search the view
275 search-back Search backwards in the view
276 find-next Find next search match
277 find-prev Find previous search match
278 ------------------------------------------------------------------------------
280 ifdef::backend-xhtml11[]
282 `-----------------------`-----------------------------------------------------
283 endif::backend-xhtml11[]
285 ------------------------------------------------------------------------------
286 prompt Bring up the prompt
287 screen-redraw Redraw the screen
288 screen-resize Resize the screen
289 show-version Show version information
290 stop-loading Stop all loading views
291 toggle-lineno Toggle line numbers
292 toggle-date Toggle date display
293 toggle-author Toggle author display
294 toggle-rev-graph Toggle revision graph visualization
295 toggle-refs Toggle reference display
298 ------------------------------------------------------------------------------
304 Color commands control highlighting and the user interface styles. If your
305 terminal supports color, these commands can be used to assign foreground and
306 background combinations to certain areas. Optionally, an attribute can be
307 given as the last parameter. The syntax is:
310 ..............................................................................
311 *color* 'area' 'fgcolor' 'bgcolor' '[attributes]'
312 ..............................................................................
316 ------------------------------------------------------------------------------
317 # Overwrite the default terminal colors to white on black.
318 color default white black
320 color diff-header yellow default
321 color diff-index blue default
322 color diff-chunk magenta default
323 # A strange looking cursor line
324 color cursor red default underline
326 color title-blur white blue
327 color title-focus white blue bold
328 ------------------------------------------------------------------------------
332 Valid area names are described below. Note, all names are
333 case-insensitive, and you may use '-', '_', and '.' interchangeably,
334 e.g. "Diff-Header", "DIFF_HEADER", and "diff.header" are the same.
338 Valid colors include: *white*, *black*, *green*, *magenta*, *blue*,
339 *cyan*, *yellow*, *red*, *default*. Use *default* to refer to the
340 default terminal colors. This is recommended for background colors
341 if you are using a terminal with a transparent background.
345 Valid attributes include: *normal*, *blink*, *bold*, *dim*, *reverse*,
346 *standout*, and *underline*. Note, not all attributes may be supported
352 The colors and attributes to be used for the text that is not highlighted or
353 that specify the use of the default terminal colors can be controlled by
354 setting the *default* color option.
356 ifdef::backend-xhtml11[]
358 `-----------------------`-----------------------------------------------------
359 endif::backend-xhtml11[]
361 ------------------------------------------------------------------------------
362 default Overwrite default terminal colors (see above).
363 cursor The cursor line.
364 status The status window showing info messages.
365 title-focus The title window for the current view.
366 title-blur The title window of any backgrounded view.
367 delimiter Delimiter shown for truncated lines.
368 line-number Line numbers.
369 date The commit date.
370 ------------------------------------------------------------------------------
372 ifdef::backend-xhtml11[]
374 `-----------------------`-----------------------------------------------------
375 endif::backend-xhtml11[]
377 ------------------------------------------------------------------------------
378 main-author The commit author.
379 main-revgraph The revision graph.
380 main-commit The commit comment.
381 main-head Label of the current branch.
382 main-remote Label of a remote.
383 main-tracked Label of the remote tracked by the current branch.
384 main-tag Label of a signed tag.
385 main-local-tag Label of a local tag.
386 main-ref Label of any other reference.
387 ------------------------------------------------------------------------------
389 ifdef::backend-xhtml11[]
391 `-----------------------`-----------------------------------------------------
392 endif::backend-xhtml11[]
394 ------------------------------------------------------------------------------
395 stat-head The "On branch"-line.
396 stat-section Status section titles,
397 stat-staged Status flag of staged files.
398 stat-unstaged Status flag of unstaged files.
399 stat-untracked Status flag of untracked files.
400 ------------------------------------------------------------------------------
402 ifdef::backend-xhtml11[]
404 `-----------------------`-----------------------------------------------------
405 endif::backend-xhtml11[]
407 ------------------------------------------------------------------------------
408 blame-id The commit ID.
409 ------------------------------------------------------------------------------
418 Options concerning diff start, chunks and lines added and deleted.
420 *diff-header*, *diff-chunk*, *diff-add*, *diff-del*
422 Enhanced git diff markup::
424 Extra diff information emitted by the git diff machinery, such as mode
425 changes, rename detection, and similarity.
427 *diff-oldmode*, *diff-newmode*, *diff-copy-from*, *diff-copy-to*,
428 *diff-rename-from*, *diff-rename-to*, *diff-similarity*, *diff-dissimilarity*
429 *diff-tree*, *diff-index*
431 Pretty print commit headers::
433 Commit diffs and the revision logs are usually formatted using pretty printed
434 headers , unless `--pretty=raw` was given. This includes lines, such as merge
435 info, commit ID, and author and committer date.
437 *pp-author*, *pp-commit*, *pp-merge*, *pp-date*, *pp-adate*, *pp-cdate*,
442 Usually shown when `--pretty=raw` is given, however 'commit' is pretty much
445 *commit*, *parent*, *tree*, *author*, *committer*
449 For now only `Signed-off-by` and `Acked-by` lines are colorized.
455 Colors for information of the tree view.
457 *tree-dir*, *tree-file*
463 Copyright (c) 2006-2009 Jonas Fonseca <fonseca@diku.dk>
465 Licensed under the terms of the GNU General Public License.
469 manpage:tig[1] and the http://jonas.nitro.dk/tig/manual.html[tig manual].