saving uncommitted changes in /etc prior to emerge run
This commit is contained in:
34
tigrc
34
tigrc
@@ -16,9 +16,9 @@
|
||||
# : Show author information?
|
||||
# commit-title
|
||||
# - display (bool) : Show the commit title?
|
||||
# - graph (bool) : Show the commit revision graph? (main view only)
|
||||
# - graph (enum) [no|v2|v1] : Show the commit graph? (main view only)
|
||||
# - refs (bool) : Show branches, tags and remotes? (main view only)
|
||||
# - overflow (boolint) : Highlight overflows? Default to 50 when enabled.
|
||||
# - overflow (boolint) : Highlight overflows? Defaults to 50 when enabled.
|
||||
#
|
||||
# date
|
||||
# - display (enum) [no|default|local|relative|short]
|
||||
@@ -34,7 +34,7 @@
|
||||
#
|
||||
# line-number
|
||||
# - display (bool) : Show line numbers?
|
||||
# - interval (int) : Interval between line numbers
|
||||
# - interval (int) : Interval between line numbers; defaults to 5
|
||||
#
|
||||
# mode
|
||||
# - display (bool) : Show file modes?
|
||||
@@ -53,7 +53,7 @@
|
||||
set blame-view = date:default author:full file-name:auto id:yes,color line-number:no,interval=5 text
|
||||
set grep-view = file-name:no line-number:yes,interval=1 text
|
||||
set main-view = line-number:no,interval=5 id:no date:default author:full commit-title:yes,graph,refs,overflow=no
|
||||
set refs-view = date:default author:full ref commit-title
|
||||
set refs-view = line-number:no id:no date:default author:full ref commit-title
|
||||
set stash-view = line-number:no,interval=5 id:no date:default author:full commit-title
|
||||
set status-view = line-number:no,interval=5 status:short file-name
|
||||
set tree-view = line-number:no,interval=5 mode author:full file-size date:default id:no file-name
|
||||
@@ -86,13 +86,15 @@ set line-graphics = default # Enum: ascii, default, utf-8
|
||||
set reference-format = [branch] <tag> {remote} ~replace~
|
||||
|
||||
# Settings controlling how content is read from Git
|
||||
set commit-order = default # Enum: default, topo, date, reverse (main)
|
||||
set commit-order = auto # Enum: auto, default, topo, date, reverse (main)
|
||||
set status-untracked-dirs = yes # Show files in untracked directories? (status)
|
||||
set ignore-space = no # Enum: no, all, some, at-eol (diff)
|
||||
set show-notes = yes # When non-bool passed as `--show-notes=...` (diff)
|
||||
#set diff-context = 3 # Number of lines to show around diff changes (diff)
|
||||
#set diff-options = -C # User-defined options for `tig show` (diff)
|
||||
#set blame-options = -C -C -C # User-defined options for `tig blame` (blame)
|
||||
#set diff-options = -C # User-defined options for `tig show` (git-diff)
|
||||
#set blame-options = -C -C -C # User-defined options for `tig blame` (git-blame)
|
||||
#set log-options = --pretty=raw # User-defined options for `tig log` (git-log)
|
||||
#set main-options = -n 1000 # User-defined options for `tig` (git-log)
|
||||
|
||||
# Misc
|
||||
set refresh-mode = auto # Enum: manual, auto, after-command, periodic
|
||||
@@ -100,9 +102,10 @@ set refresh-interval = 10 # Interval in seconds between refreshes
|
||||
set ignore-case = no # Ignore case when searching?
|
||||
set focus-child = yes # Move focus to child view when opened?
|
||||
set horizontal-scroll = 50% # Number of columns to scroll as % of width
|
||||
set split-view-height = 67% # Number of lines for bottom view as % of height
|
||||
set split-view-height = 67% # Height of the bottom view for horizontal splits
|
||||
set vertical-split = auto # Enum: horizontal, vertical, auto; Use auto to
|
||||
# switch to horizontal split when width allows it
|
||||
set split-view-width = 50% # Width of right-most view for vertical splits
|
||||
set editor-line-number = yes # Automatically pass line number to editor? Used
|
||||
# for opening file at specific line e.g. from a diff
|
||||
set mouse = no # Enable mouse support?
|
||||
@@ -174,8 +177,10 @@ bind generic <Enter> enter # Enter and open selected entry
|
||||
bind generic <Lt> back # Go back to the previous view state
|
||||
bind generic <Down> next # Move to next
|
||||
bind generic <C-N> next
|
||||
bind generic J next
|
||||
bind generic <Up> previous # Move to previous
|
||||
bind generic <C-P> previous
|
||||
bind generic K previous
|
||||
bind generic , parent # Move to parent
|
||||
bind generic <Tab> view-next # Move focus to the next view
|
||||
bind generic R refresh # Reload and refresh view
|
||||
@@ -203,8 +208,10 @@ bind main G :toggle commit-title-graph # Toggle revision graph visualization
|
||||
bind main F :toggle commit-title-refs # Toggle reference display (tags/branches)
|
||||
|
||||
# Cursor navigation
|
||||
bind generic k move-up
|
||||
bind generic j move-down
|
||||
bind generic k move-up
|
||||
#bind generic ? move-half-page-down
|
||||
#bind generic ? move-half-page-up
|
||||
bind generic <PgDown> move-page-down
|
||||
bind generic <C-D> move-page-down
|
||||
bind generic <Space> move-page-down
|
||||
@@ -281,6 +288,8 @@ bind generic v show-version # Show Tig version
|
||||
# Git automatically indents commit messages by four spaces.
|
||||
|
||||
color "diff --" yellow default
|
||||
color "--- " yellow default
|
||||
color "+++ " yellow default
|
||||
color "@@" magenta default
|
||||
color "+" green default
|
||||
color " +" green default
|
||||
@@ -357,6 +366,13 @@ color palette-3 green default
|
||||
color palette-4 default default
|
||||
color palette-5 white default
|
||||
color palette-6 red default
|
||||
color palette-7 magenta default bold
|
||||
color palette-8 yellow default bold
|
||||
color palette-9 cyan default bold
|
||||
color palette-10 green default bold
|
||||
color palette-11 default default bold
|
||||
color palette-12 white default bold
|
||||
color palette-13 red default bold
|
||||
color graph-commit blue default
|
||||
|
||||
# Mappings for colors read from git configuration.
|
||||
|
||||
Reference in New Issue
Block a user