blob: f3d278db5b3e6ed550216dd6cd3b220d284976b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# $_FASD_DATA
# Path to the fasd data file, default "$HOME/.fasd".
#
# $_FASD_BLACKLIST
# List of blacklisted strings. Commands matching them will not be processed.
# Default is "--help".
#
# $_FASD_SHIFT
# List of all commands that needs to be shifted, defaults to "sudo busybox".
#
# $_FASD_IGNORE
# List of all commands that will be ignored, defaults to "fasd ls echo".
#
# $_FASD_TRACK_PWD
# Fasd defaults to track your "$PWD". Set this to 0 to disable this behavior.
#
# $_FASD_AWK
# Which awk to use. Fasd can detect and use a compatible awk.
#
# $_FASD_SINK
# File to log all STDERR to, defaults to "/dev/null".
#
# $_FASD_MAX
# Max total score / weight, defaults to 2000.
#
# $_FASD_SHELL
# Which shell to execute. Some shells will run faster than others. fasd
# runs faster with dash and ksh variants.
#
# $_FASD_BACKENDS
# Default backends.
#
# $_FASD_RO
# If set to any non-empty string, fasd will not add or delete entries from
# database. You can set and export this variable from command line.
#
# $_FASD_FUZZY
# Level of "fuzziness" when doing fuzzy matching. More precisely, the number of
# characters that can be skipped to generate a match. Set to empty or 0 to
# disable fuzzy matching. Default value is 2.
#
# $_FASD_VIMINFO
# Path to .viminfo file for viminfo backend, defaults to "$HOME/.viminfo"
#
# $_FASD_RECENTLY_USED_XBEL
# Path to XDG recently-used.xbel file for recently-used backend, defaults to
# "$HOME/.local/share/recently-used.xbel"
#
alias V='f -t -e vim -b viminfo'
alias v='f -e vim' # quick opening files with vim
alias m='f -e mpv' # quick opening files with mpv
alias o='a -e xdg-open' # quick opening files with xdg-open
|