23 lines
696 B
Text
23 lines
696 B
Text
|
#if [[ -f /etc/solus-release ]]; then
|
||
|
# source /usr/share/defaults/etc/profile
|
||
|
#fi
|
||
|
|
||
|
export EDITOR=/usr/bin/nvim
|
||
|
export SUDO_EDITOR=/usr/bin/nvim
|
||
|
export SYSTEMD_EDITOR=/usr/bin/nvim
|
||
|
export VISUAL=/usr/bin/nvim
|
||
|
if [[ -x "/usr/lib/ssh/gnome-ssh-askpass3" ]]; then
|
||
|
export SSH_ASKPASS=/usr/lib/ssh/gnome-ssh-askpass3
|
||
|
elif [[ -x "/usr/lib/seahorse/ssh-askpass" ]]; then
|
||
|
export SSH_ASKPASS=/usr/lib/seahorse/ssh-askpass
|
||
|
fi
|
||
|
|
||
|
# Default Environment
|
||
|
export PAGER=less
|
||
|
#export VIMINIT=":set runtimepath^=$HOME/.SpaceVim|:source $HOME/.SpaceVim/vimrc"
|
||
|
#export SPACEVIMDIR="$HOME/.SpaceVim.d/"
|
||
|
#export PATH=$PATH:$HOME/bin:$HOME/go/bin
|
||
|
#export QT_QPA_PLATFORMTHEME=qgnomeplatform
|
||
|
|
||
|
#. "$HOME/.cargo/env"
|