dotfiles
Something went wrong. Try again.
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849if status is-interactive # Commands to run in interactive sessions can go hereend
# nvim if it's installed, vim otherwiseif command -q nvim set -gx EDITOR nvimelse set -gx EDITOR vimendset -gx VISUAL $EDITOR
# Turn off syntax highlightingfor color in fish_color_command fish_color_comment fish_color_end \ fish_color_escape fish_color_match fish_color_operator \ fish_color_param fish_color_quote \ fish_pager_color_description fish_pager_color_prefix set $color normalend
set fish_color_autosuggestion whiteset fish_color_error red
set fish_pager_color_progress white
# >>> mamba initialize >>># !! Contents within this block are managed by 'micromamba shell init' !!set -gx MAMBA_EXE "/home/jni/.local/bin/micromamba"set -gx MAMBA_ROOT_PREFIX "/home/jni/micromamba"$MAMBA_EXE shell hook --shell fish --root-prefix $MAMBA_ROOT_PREFIX | source# <<< mamba initialize <<<micromamba activate all
alias mu micromamba
alias pbcopy wl-copyalias pbpaste wl-paste
fish_add_path /home/jni/.local/bin
starship init fish | source
command -q keyd; or command -q keyd.rvaiya; and alias keyd 'keyd.rvaiya'
if test (hostname) = "sturdy" alias audio-tv='pactl set-card-profile alsa_card.pci-0000_00_1f.3 output:hdmi-stereo+input:analog-stereo' alias audio-speakers='pactl set-card-profile alsa_card.pci-0000_00_1f.3 output:analog-stereo+input:analog-stereo'end