Tony Duckles [Fri, 27 Nov 2020 18:03:43 +0000 (12:03 -0600)]
.vimrc: Change hotkey for QuickfixToggle()
Change hotkey for QuickfixToggle() to be `<leader>q`, to better match
the tpope/vim-unimpaired `:cprev` and `:cnext` keybindings -- `[q` and
`]q` respectively.
Tony Duckles [Sun, 1 Dec 2019 15:38:51 +0000 (09:38 -0600)]
.bashrc: Update prompt_color() to use `realpath` to get canonical $HOME
Use `realpath` to get canonical $HOME file-path. This is mainly relevant
in situations where $HOME is under a symlink, where there will be a
difference between the symbolic vs canonical values.
Tony Duckles [Sat, 30 Nov 2019 18:04:57 +0000 (12:04 -0600)]
.vimrc: Don't use modelines to set foldmethod=expr for autofolds
Newer versions of Vim prevent using `foldmethod` in modeline options
when `modelineexpr` is off. Shift to using autocmd's to enable autofolds
in the relevant file-types.
Tony Duckles [Thu, 19 Jul 2018 02:47:19 +0000 (21:47 -0500)]
.bashrc: Use `paste ... -` when reading from pipe
GNU versions of `paste` will read from STDIN when no explicit file
arguments, but some other UNIX platforms [e.g. AIX] have versions of
`paste` which required an explicit "-" filename argument to indicate
"read from STDIN".
Build discrete "start" and "end" lists, and prepend/append those lists
to $PATH/$MANPATH once at the end. This makes it easier to control the
discrete order of paths in the prefix vs suffix sections. For example,
I always want $HOME/bin to be at the very-start of $PATH so that I can
put an "override" script in $HOME/bin and that can always win over
"normal" binaries in other later directories in $PATH.
Tony Duckles [Sat, 17 Feb 2018 18:29:48 +0000 (12:29 -0600)]
.gitconfig: Use `diff-highlight` contrib script as diff-filter
- bin/diff-filter: Wrapper around calling the Git `diff-highlight`
contrib script. This will degrade gracefully if `diff-highlight`
script cannot be found in standard locations.
- bin/diff-pager: Wrapper around calling new `diff-filter | $PAGER`.
This can be used via `git config core.pager` or any other
pager-like places which want to format git-patch output.
- .gitconfig:
- core.pager: use new `diff-pager` wrapper script.
- interactive.diffFilter: use new `diff-filter` wrapper script.
This lets `git add -i ...` use the same shared diff-filter.
- color.diff-highlight: Tweak colors so that "normal" colors have
a normal [non-colored] foreground color, and "highlight" colors
can be simply "red bold" and "green bold" respectively. This
eliminates visual clutter from the colored diff display, so that
the diff output is less noise [for line-pairs which
`diff-highlight` can process].
Tony Duckles [Sat, 6 Jan 2018 14:47:09 +0000 (08:47 -0600)]
.vimrc: Use autocmd for adding Solarized highlight overrides
Use 'autocmd ColorScheme solarized' to trigger adding the override
'highlight' rules to override default Solarized colorscheme
highlighting.
This ensures that these highlight rules get added when changing the
colorscheme [back] to 'solarized'. This also compartmentalizes these
overrides to the Solarized colorscheme.
Tony Duckles [Sat, 23 Dec 2017 15:23:10 +0000 (09:23 -0600)]
.vimrc: Cleanup 'highlight' overrides
The current colorscheme should set all the standard 'highlight'
groups. No need to override them locally.
- Remove all 'guifg'/'guibg' overrides, keep only terminal-type
overrides. GUI sessions (e.g. gvim) should use 24-bit colors
as defined in current `colorscheme`.
- Remove 'StatusLine' highlights. Everything status-line is handled
by `vim-airline`.
- Only define override 'SpecialKeys' highlights if we're using a
16-color $TERM [because I don't like the default solarized color-
scheme 'SpecialKeys' highlight colors].
- Remove 'Todo' highlight. The current `colorscheme` should define
this, no need to override it.