--- /dev/null
+# Install git completion
+if [ ! -f "${HOME}/.cache/bash/git-completion.bash" ]; then
+ URL="https://raw.githubusercontent.com/git/git/master/contrib/completion"
+ mkdir -p ${HOME}/.cache/bash > /dev/null 2>&1
+ curl "${URL}/git-completion.bash" -L -s -o "${HOME}/.cache/bash/git-completion.bash"
+ curl "${URL}/git-prompt.sh" -L -s -o "${HOME}/.cache/bash/git-prompt.sh"
+fi
+
+# Install fzf
+if [ ! -f "${HOME}/.cache/fzf/install" ]; then
+ git clone --depth 1 https://github.com/junegunn/fzf.git $HOME/.cache/fzf
+ $HOME/.cache/fzf/install
+fi
# LD_LIBRARY_PATH="${PREFIX}/lib:${LD_LIBRARY_PATH}"
# Setup some the location environment variable.
-export MYVIMRC="$HOME/.config/vim/vimrc"
+#export MYVIMRC="$HOME/.config/vim/vimrc"
export INPUTRC="$HOME/.inputrc"
export HISTFILE="$HOME/.local/share/bash/history";