fix: moved homeshick init to after interactivity check
This commit is contained in:
parent
da71807cd5
commit
f483527d65
13
home/.bashrc
13
home/.bashrc
|
@ -1,10 +1,3 @@
|
|||
# Homeshick for configs
|
||||
source $HOME/.homesick/repos/homeshick/homeshick.sh
|
||||
source $HOME/.homesick/repos/homeshick/completions/homeshick-completion.bash
|
||||
homeshick pull
|
||||
homeshick link
|
||||
|
||||
|
||||
# ~/.bashrc: executed by bash(1) for non-login shells.
|
||||
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
|
||||
# for examples
|
||||
|
@ -15,6 +8,12 @@ case $- in
|
|||
*) return;;
|
||||
esac
|
||||
|
||||
# Homeshick for configs
|
||||
source $HOME/.homesick/repos/homeshick/homeshick.sh
|
||||
source $HOME/.homesick/repos/homeshick/completions/homeshick-completion.bash
|
||||
homeshick pull
|
||||
homeshick link
|
||||
|
||||
# don't put duplicate lines or lines starting with space in the history.
|
||||
# See bash(1) for more options
|
||||
HISTCONTROL=ignoreboth
|
||||
|
|
Loading…
Reference in New Issue