23 lines
667 B
Fish
23 lines
667 B
Fish
# Path to Oh My Fish install.
|
|
set -q XDG_DATA_HOME
|
|
and set -gx OMF_PATH "$XDG_DATA_HOME/omf"
|
|
or set -gx OMF_PATH "$HOME/.local/share/omf"
|
|
|
|
# Load Oh My Fish configuration.
|
|
source $OMF_PATH/init.fish
|
|
|
|
# vi mode - off so that emacs can still be in control without having 2 vi modes
|
|
# fish_vi_key_bindings
|
|
|
|
# variables
|
|
set -x PATH {/bin,/usr/bin,/home/chris/.dotfiles,/home/chris/.emacs.d/bin,/home/chris/scripts}
|
|
set -x QT_QPA_PLATFORMTHEME "qt5ct"
|
|
set -x QT_AUTO_SCREEN_SCALE_FACTOR 1
|
|
set -x EDITOR "emacsclient -a emacs"
|
|
set -x TERM alacritty
|
|
|
|
# aliases
|
|
alias ls="lsd -a"
|
|
alias rfi="/home/chris/.dotfiles/rofi/launchers-git/launcher.sh"
|
|
alias scl="pkexec systemctl "
|