move homedir.skel into provisioning dir

This commit is contained in:
2018-03-06 18:08:31 -05:00
parent 108b46f039
commit 905c10593f
8 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
if [[ -d ~/.local/bashrc.d ]]; then
for FN in ~/.local/bashrc.d/*.sh ; do
source $FN
done
fi

View File

@@ -0,0 +1 @@
# noop

View File

@@ -0,0 +1 @@
export PATH="$HOME/hacks/bin:$HOME/bin:$HOME/.local/bin:$PATH"

View File

@@ -0,0 +1 @@
export PS1="\h:\w\\$ "

View File

@@ -0,0 +1,3 @@
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && source "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && source "$NVM_DIR/bash_completion" # This loads nvm bash_completion

View File

@@ -0,0 +1,3 @@
if which kubectl 2>&1 > /dev/null ; then
source <(kubectl completion bash)
fi

View File

@@ -0,0 +1,5 @@
if [[ -d ~/.local/profile.d ]]; then
for FN in ~/.local/profile.d/*.sh ; do
source $FN
done
fi

View File

@@ -30,4 +30,4 @@ mkdir -p ~/.local/profile.d
mv ~/.profile ~/.local/profile.d/000.distro.profile.sh
mv ~/.bashrc ~/.local/bashrc.d/000.distro.bashrc.sh
rsync -avP /home/sneak/hacks/homedir.skel/ /home/sneak/
rsync -avP /home/sneak/hacks/provision.workbox/homedir.skel/ /home/sneak/