fix PATH-problem in .bash_completion and stuff
This commit is contained in:
parent
d13424613b
commit
dd9f6470b8
|
|
@ -1,7 +1,5 @@
|
||||||
# ~/.bash_completion - Custom bash auto completions
|
# ~/.bash_completion - Custom bash auto completions
|
||||||
|
|
||||||
# Enable bash completion for dotfiles manager (if installed)
|
# Enable bash completion for dotfiles manager (if installed)
|
||||||
if command -v dotfiles &>/dev/null; then
|
[[ -x "$HOME/bin/dotfiles" ]] && source <($HOME/bin/dotfiles bash-completion)
|
||||||
source <(dotfiles bash-completion)
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,9 +2,9 @@
|
||||||
Description=SSH key agent
|
Description=SSH key agent
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Type=forking
|
Type=simple
|
||||||
Environment=SSH_AUTH_SOCK=%t/ssh-agent.sock
|
Environment=SSH_AUTH_SOCK=%t/ssh-agent.sock
|
||||||
ExecStart=/usr/bin/ssh-agent -a $SSH_AUTH_SOCK
|
ExecStart=/usr/bin/ssh-agent -D -a $SSH_AUTH_SOCK
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=default.target
|
WantedBy=default.target
|
||||||
|
|
|
||||||
7
.profile
7
.profile
|
|
@ -13,12 +13,11 @@ export GPG_TTY=$(tty)
|
||||||
# Environment variables
|
# Environment variables
|
||||||
export TERMINAL=sakura
|
export TERMINAL=sakura
|
||||||
export EDITOR=vim
|
export EDITOR=vim
|
||||||
export BC_ENV_ARGS="-lq $HOME/.bcrc"
|
export BC_ENV_ARGS="-lq"
|
||||||
|
[[ -f "$HOME/.bcrc" ]] && export BC_ENV_ARGS="$BC_ENV_ARGS $HOME/.bcrc"
|
||||||
|
|
||||||
# PATH
|
# PATH
|
||||||
if [[ -d "$HOME/bin" ]]; then
|
[[ -d "$HOME/bin" ]] && export PATH="$HOME/bin:$PATH"
|
||||||
export PATH="$HOME/bin:$PATH"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Android SDK stuff
|
# Android SDK stuff
|
||||||
#export ANDROID_HOME="/opt/Android_SDK"
|
#export ANDROID_HOME="/opt/Android_SDK"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue