28 lines
689 B
Bash
28 lines
689 B
Bash
[[ "$XDG_CURRENT_DESKTOP" == "KDE" ]] || [[ "$XDG_CURRENT_DESKTOP" == "GNOME" ]] || export QT_QPA_PLATFORMTHEME="qt5ct"
|
|
|
|
export EDITOR=/usr/bin/vim
|
|
export BROWSER=/usr/bin/qutebrowser
|
|
|
|
export PATH=~/.npm-global/bin:$PATH
|
|
export PATH=$(ruby -r rubygems -e "puts Gem.user_dir")/bin:$PATH
|
|
export PATH=/home/ray/.bin:/home/ray/.local/bin:/home/ray/.config/composer/vendor/bin:$PATH
|
|
|
|
|
|
# fzf + ag config
|
|
export FZF_DEFAULT_COMMAND='ag --nocolor -g ""'
|
|
|
|
#disable suspend and resume
|
|
stty -ixon
|
|
#
|
|
# wal
|
|
(cat ~/.cache/wal/sequences &)
|
|
|
|
# autoenv activate
|
|
source ~/.local/bin/activate.sh
|
|
|
|
# custom aliases
|
|
[[ -f ~/.config/profile//aliases.sh ]] && . ~/.config/profile/aliases.sh
|
|
|
|
|
|
# vim: filetype=sh
|