Geoffrey Frogeye
105f34ca50
Well, this is the only theme I found that had a correct vim plugin and had enough contrast (this is important for me). The dark-brown background is a bit sadder than the blue one I might revert to solarized at one moment or another.
14 lines
217 B
Bash
14 lines
217 B
Bash
#
|
|
# ~/.profile
|
|
#
|
|
if [ -z "$SSH_AUTH_SOCK" ] ; then
|
|
eval `ssh-agent -s` > /dev/null
|
|
fi
|
|
|
|
if [ -f "$HOME/.config/linuxColors.sh" ]; then
|
|
source "$HOME/.config/linuxColors.sh"
|
|
fi
|
|
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|