35 lines
876 B
Bash
35 lines
876 B
Bash
export EDITOR=/usr/bin/vim
|
|
export BROWSER=/usr/bin/qutebrowser
|
|
|
|
# export PATH=~/.npm-global/bin:$PATH
|
|
# export PATH=/home/ray/.bin:/home/ray/.local/bin:/home/ray/.config/composer/vendor/bin:$PATH
|
|
ruby_path=$(ruby -r rubygems -e "puts Gem.user_dir")
|
|
export PATH=$ruby_path/bin:$PATH
|
|
export PATH=~/.bin:~/.bin/bin:$PATH
|
|
|
|
# https://developers.google.com/web/tools/puppeteer/troubleshooting
|
|
export CHROME_DEVEL_SANDBOX=/usr/lib/chromium/chrome-sandbox
|
|
|
|
# fzf + ag config
|
|
export FZF_DEFAULT_COMMAND='ag --nocolor -g ""'
|
|
|
|
#disable suspend and resume
|
|
stty -ixon
|
|
|
|
set xbmap gb
|
|
|
|
# wal
|
|
# (cat ~/.cache/wal/sequences &)
|
|
|
|
# autoenv activate
|
|
export AUTOENV_ENV_FILENAME=.in
|
|
export AUTOENV_ENV_LEAVE_FILENAME=.out
|
|
export AUTOENV_ENABLE_LEAVE=1
|
|
source ~/.src/autoenv/activate.sh
|
|
|
|
# custom aliases
|
|
[[ -f ~/.config/profile//aliases.sh ]] && . ~/.config/profile/aliases.sh
|
|
|
|
|
|
# vim: filetype=sh
|