fish: refactor config
This commit is contained in:
parent
69b23157d2
commit
cddcb06d10
120
config.fish
120
config.fish
|
@ -11,77 +11,81 @@ function filesize
|
||||||
end
|
end
|
||||||
|
|
||||||
function _fetch
|
function _fetch
|
||||||
# if which pfetch > /dev/null 2>&1 && [ "$VSCODE_INJECTION" != "1" ]
|
|
||||||
# export PF_INFO="ascii title os host kernel uptime memory de"
|
|
||||||
# #export PF_ASCII="arch"
|
|
||||||
# pfetch
|
|
||||||
# end
|
|
||||||
if which ufetch > /dev/null 2>&1 && [ "$VSCODE_INJECTION" != "1" ]
|
if which ufetch > /dev/null 2>&1 && [ "$VSCODE_INJECTION" != "1" ]
|
||||||
ufetch
|
ufetch
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function _set_env
|
||||||
|
if [ "$TERM" = "foot" ] || [ "$TERM" = "xterm-kitty" ]
|
||||||
|
alias ssh="TERM=xterm-256color $(which ssh)"
|
||||||
|
alias gg="TERM=xterm-256color $(which gg)"
|
||||||
|
end
|
||||||
|
set -x VIRTUAL_ENV_DISABLE_PROMPT
|
||||||
|
set -x PF_INFO "ascii title os host kernel uptime memory de"
|
||||||
|
set -x FZF_DEFAULT_OPTS "\
|
||||||
|
--color=bg+:#1e1e2e,bg:#1e1e2e,spinner:#f5e0dc,hl:#f38ba8 \
|
||||||
|
--color=fg:#cdd6f4,header:#f38ba8,info:#cba6f7,pointer:#f5e0dc \
|
||||||
|
--color=marker:#b4befe,fg+:#cdd6f4,prompt:#cba6f7,hl+:#f38ba8 \
|
||||||
|
--color=selected-bg:#45475a \
|
||||||
|
--multi"
|
||||||
|
end
|
||||||
|
|
||||||
|
function _set_aliases
|
||||||
|
if which eza > /dev/null 2>&1
|
||||||
|
alias ls="eza --icons=auto"
|
||||||
|
else if which exa > /dev/null 2>&1
|
||||||
|
alias ls="exa --icons=auto"
|
||||||
|
end
|
||||||
|
|
||||||
|
if which bat > /dev/null 2>&1
|
||||||
|
alias cat="bat"
|
||||||
|
else if which batcat > /dev/null 2>&1
|
||||||
|
alias cat="batcat"
|
||||||
|
end
|
||||||
|
|
||||||
|
if which python > /dev/null 2>&1
|
||||||
|
alias py="python"
|
||||||
|
end
|
||||||
|
|
||||||
|
if which distrobox-enter > /dev/null 2>&1
|
||||||
|
alias denter=distrobox-enter
|
||||||
|
end
|
||||||
|
|
||||||
|
if which nvim > /dev/null 2>&1
|
||||||
|
alias v "nvim"
|
||||||
|
alias V "sudoedit"
|
||||||
|
set -x EDITOR nvim
|
||||||
|
end
|
||||||
|
|
||||||
|
alias cdt "cd (mktemp -d)"
|
||||||
|
alias ":q" exit
|
||||||
|
end
|
||||||
|
|
||||||
function arm64cc-env
|
function arm64cc-env
|
||||||
export ARCH=arm64
|
set -gx ARCH arm64
|
||||||
export hardeningDisable=all
|
set -gx hardeningDisable all
|
||||||
export CROSS_COMPILE=aarch64-linux-gnu-
|
set -gx CROSS_COMPILE aarch64-linux-gnu-
|
||||||
end
|
end
|
||||||
|
|
||||||
if which pyenv > /dev/null 2>&1
|
if which pyenv > /dev/null 2>&1
|
||||||
pyenv init - | source
|
pyenv init - | source
|
||||||
end
|
end
|
||||||
|
|
||||||
if [ "$TERM" = "foot" ] || [ "$TERM" = "xterm-kitty" ]
|
|
||||||
alias ssh="TERM=xterm-256color $(which ssh)"
|
|
||||||
alias gg="TERM=xterm-256color $(which gg)"
|
|
||||||
end
|
|
||||||
|
|
||||||
if status is-interactive
|
if status is-interactive
|
||||||
bind \cl 'clear; _fetch; commandline -f repaint'
|
bind \cl 'clear; _fetch; commandline -f repaint'
|
||||||
bind \cb btop
|
bind \cb btop
|
||||||
bind \cs 'source ~/.config/fish/config.fish'
|
bind \cs 'source ~/.config/fish/config.fish'
|
||||||
|
|
||||||
if which eza > /dev/null 2>&1
|
if which zoxide > /dev/null 2>&1
|
||||||
alias ls="eza --icons=auto"
|
zoxide init --cmd cd fish | source
|
||||||
else if which exa > /dev/null 2>&1
|
end
|
||||||
alias ls="exa --icons=auto"
|
|
||||||
end
|
if [ "$reload" = "" ]
|
||||||
|
_fetch
|
||||||
|
end
|
||||||
|
|
||||||
if which bat > /dev/null 2>&1
|
set reload "done"
|
||||||
alias cat="bat"
|
_set_aliases
|
||||||
else if which batcat > /dev/null 2>&1
|
|
||||||
alias cat="batcat"
|
|
||||||
end
|
|
||||||
|
|
||||||
if which python > /dev/null 2>&1
|
|
||||||
alias py="python"
|
|
||||||
end
|
|
||||||
|
|
||||||
if which distrobox-enter > /dev/null 2>&1
|
|
||||||
alias denter=distrobox-enter
|
|
||||||
end
|
|
||||||
|
|
||||||
if which nvim > /dev/null 2>&1
|
|
||||||
alias v="nvim"
|
|
||||||
alias edit="nvim"
|
|
||||||
alias e="nvim"
|
|
||||||
alias V="sudoedit"
|
|
||||||
export EDITOR=nvim
|
|
||||||
end
|
|
||||||
|
|
||||||
alias cdt="cd (mktemp -d)"
|
|
||||||
alias ":q"=exit
|
|
||||||
|
|
||||||
if which zoxide > /dev/null 2>&1
|
|
||||||
zoxide init --cmd cd fish | source
|
|
||||||
end
|
|
||||||
|
|
||||||
if [ "$reload" = "" ]
|
|
||||||
_fetch
|
|
||||||
end
|
|
||||||
|
|
||||||
export VIRTUAL_ENV_DISABLE_PROMPT=0
|
|
||||||
set reload "done"
|
|
||||||
end
|
end
|
||||||
|
_set_env
|
||||||
fish_add_path /home/timoxa0/.spicetify
|
|
||||||
|
|
Loading…
Reference in a new issue