From 9cac7a7a81471eff1c3ac7ba8739daaa457b567b Mon Sep 17 00:00:00 2001 From: Jannik ZANDER Date: Sun, 19 Jun 2016 22:47:07 +0200 Subject: [PATCH] Move bash files --- .bashrc | 2 +- .config/bash/{rc => }/aliases | 0 .config/bash/bashrc_local | 12 ++++++++++++ .config/bash/{rc => }/completion | 0 .config/bash/{rc => }/functions | 0 .config/bash/{rc => }/options | 0 .config/bash/{rc => }/prompt.bash | 0 .config/bash/{rc => }/solarized | 0 8 files changed, 13 insertions(+), 1 deletion(-) rename .config/bash/{rc => }/aliases (100%) create mode 100644 .config/bash/bashrc_local rename .config/bash/{rc => }/completion (100%) rename .config/bash/{rc => }/functions (100%) rename .config/bash/{rc => }/options (100%) rename .config/bash/{rc => }/prompt.bash (100%) rename .config/bash/{rc => }/solarized (100%) diff --git a/.bashrc b/.bashrc index 7873146..0afaa65 100644 --- a/.bashrc +++ b/.bashrc @@ -4,7 +4,7 @@ [[ -z "$PS1" ]] && return # Load settings -for file in ${HOME}/.config/bash/rc/*; do +for file in ${HOME}/.config/bash/*; do [ -f "$file" ] && . "$file"; done; diff --git a/.config/bash/rc/aliases b/.config/bash/aliases similarity index 100% rename from .config/bash/rc/aliases rename to .config/bash/aliases diff --git a/.config/bash/bashrc_local b/.config/bash/bashrc_local new file mode 100644 index 0000000..2f5faba --- /dev/null +++ b/.config/bash/bashrc_local @@ -0,0 +1,12 @@ +alias gvim="C:/programs/Vim/vim74/gvim.exe" + +if [ -d "${HOME}/.fzf" ] ; then + PATH="${HOME}/.fzf:${PATH}" +fi + + +export GOPATH="$HOME/gopath" +#export GOROOT=/mingw64 +export GOROOT=/mingw64/lib/go +eval "$(ssh-agent -s)" +ssh-add.exe ~/.ssh/github diff --git a/.config/bash/rc/completion b/.config/bash/completion similarity index 100% rename from .config/bash/rc/completion rename to .config/bash/completion diff --git a/.config/bash/rc/functions b/.config/bash/functions similarity index 100% rename from .config/bash/rc/functions rename to .config/bash/functions diff --git a/.config/bash/rc/options b/.config/bash/options similarity index 100% rename from .config/bash/rc/options rename to .config/bash/options diff --git a/.config/bash/rc/prompt.bash b/.config/bash/prompt.bash similarity index 100% rename from .config/bash/rc/prompt.bash rename to .config/bash/prompt.bash diff --git a/.config/bash/rc/solarized b/.config/bash/solarized similarity index 100% rename from .config/bash/rc/solarized rename to .config/bash/solarized -- 2.43.0