blob: 04a63fc10ba39cee69d76d77db6343e3ae320ef0 (
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
|
if status is-login
exec bash -c "test -e /etc/profile && source /etc/profile;\
test -e ~/.zprofile && source ~/.zprofile;\
exec fish"
end
if status is-interactive
# commands to run in interactive sessions can go here
fish_vi_key_bindings
# personal aliases
alias c="cal"
alias d="disown"
alias dots="cd ~/.local/share/dotfiles/"
alias echo="command echo"
alias egrep='grep -E'
alias fgrep='grep -F'
alias grep='grep --colour=auto'
alias ls="ls --group-directories-first -h -p --color -F"
alias neofetch="alsi"
alias p="command yay"
alias printf="command printf"
alias pu="command yay -Syu --answerclean yes --rebuildall --noconfirm"
alias s="cd ~/.local/bin && ls"
alias t="timedatectl"
alias w="curl wttr.in"
alias x="startx"
alias yay="echo"
# youtube-dl aliases
alias yt-mp4="youtube-dl -cif 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best'"
alias yt-webm="youtube-dl -cif 'bestvideo[ext=webm]+bestaudio[ext=webm]/best[ext=webm]/best'"
alias yt-m4a="youtube-dl -cif 'bestaudio[ext=m4a]'"
# environment variable declarations
export PF_INFO="ascii title os kernel uptime pkgs memory"
# less termcap variables (for colored man pages)
set -gx LESS_TERMCAP_mb \e'[1;32m'
set -gx LESS_TERMCAP_md \e'[1;32m'
set -gx LESS_TERMCAP_me \e'[0m'
set -gx LESS_TERMCAP_se \e'[0m'
set -gx LESS_TERMCAP_so \e'[01;31m'
set -gx LESS_TERMCAP_ue \e'[0m'
set -gx LESS_TERMCAP_us \e'[1;4;33m'
end
|