configs  Check-in [8f7cbebaa6]

Overview
Comment:fish: Convert abbreviations to aliases

It's annoying to see fish expand the abbreviation while you type.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 8f7cbebaa600763ebae45d2c2022a7ebef18c06c32543b2ab6c28ea8e36c301d
User & Date: js on 2020-06-15 20:58:48
Other Links: manifest | tags
Context
2020-06-27
09:25
vim/syntax/objc.vim: Add OF_DIRECT(_MEMBERS) check-in: 564302e990 user: js tags: trunk
2020-06-15
20:58
fish: Convert abbreviations to aliases check-in: 8f7cbebaa6 user: js tags: trunk
2020-06-14
21:00
zshrc: More ways to check for truecolor terminal check-in: 9686d84236 user: js tags: trunk
Changes

Modified fish/config.fish from [ef98976a9a] to [d580d68891].

19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
set -g fish_color_status --bold red
set -g fish_color_suffix 29bc7d
set -g fish_color_user 00ff00
set -g fish_color_valid_path normal
set -g fish_color_vcs 43d696
set -g fish_color_vcs_braces 29bc7d

set -g _fish_abbr_fl fossil
set -g _fish_abbr_flc fossil changes --differ
set -g _fish_abbr_gpg gpg2
set -g _fish_abbr_vi vim

test -n "$XDG_CONFIG_HOME"
or set -x XDG_CONFIG_HOME $HOME/.config
test -n "$XDG_CACHE_HOME"
or set -x XDG_CACHE_HOME $HOME/.cache
test -n "$XDG_DATA_HOME"
or set -x XDG_DATA_HOME $HOME/.local/share

set -x EDITOR vim
set -x VIMINIT "source $XDG_CONFIG_HOME/vim/vimrc"
set -x LS_COLORS 'di=34:ow=44;37:tw=44;37:st=44;37:ex=31:su=7;31:sg=7;31:ln=33:or=7;33:pi=32:do=32:bd=35:cd=35:so=32:*.bz2=36:*.dmg=36:*.gz=36:*.gpg=36:*.rar=36:*.tar=36:*.tbz2=36:*.tgz=36:*.xz=36:*.zip=36:*.orig=90:*~=90'
set -x GNUPGHOME $XDG_DATA_HOME/gnupg







<
<
<
<
<











19
20
21
22
23
24
25





26
27
28
29
30
31
32
33
34
35
36
set -g fish_color_status --bold red
set -g fish_color_suffix 29bc7d
set -g fish_color_user 00ff00
set -g fish_color_valid_path normal
set -g fish_color_vcs 43d696
set -g fish_color_vcs_braces 29bc7d






test -n "$XDG_CONFIG_HOME"
or set -x XDG_CONFIG_HOME $HOME/.config
test -n "$XDG_CACHE_HOME"
or set -x XDG_CACHE_HOME $HOME/.cache
test -n "$XDG_DATA_HOME"
or set -x XDG_DATA_HOME $HOME/.local/share

set -x EDITOR vim
set -x VIMINIT "source $XDG_CONFIG_HOME/vim/vimrc"
set -x LS_COLORS 'di=34:ow=44;37:tw=44;37:st=44;37:ex=31:su=7;31:sg=7;31:ln=33:or=7;33:pi=32:do=32:bd=35:cd=35:so=32:*.bz2=36:*.dmg=36:*.gz=36:*.gpg=36:*.rar=36:*.tar=36:*.tbz2=36:*.tgz=36:*.xz=36:*.zip=36:*.orig=90:*~=90'
set -x GNUPGHOME $XDG_DATA_HOME/gnupg

Added fish/functions/fl.fish version [2b85a2a57c].







>
>
>
1
2
3
function fl --wraps=fossil
    command fossil $argv
end

Added fish/functions/flc.fish version [14247fede8].







>
>
>
1
2
3
function flc --wraps='fossil changes --differ'
    command fossil changes --differ $argv
end

Modified fish/functions/fld.fish from [19f71389a5] to [6716bdb3b6].

1
2
3
function fld
    fossil diff $argv -N | colordiff | less -FRX
end
|
|

1
2
3
function fld --wraps 'fossil diff'
    command fossil diff $argv -N | colordiff | less -FRX
end

Added fish/functions/gpg.fish version [b4ab9be1b1].







>
>
>
1
2
3
function gpg --wraps=gpg2
    command gpg2 $argv
end

Added fish/functions/vi.fish version [62d4f662bb].







>
>
>
1
2
3
function vi --wraps=vim
    command vim $argv
end