From: Ben Beltran Date: Thu, 14 Mar 2019 18:24:59 +0000 (+0100) Subject: Remove configurations for unused tools X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/commitdiff_plain/ac88944771c9006d4299ab8f8d54a4ff0555d099 Remove configurations for unused tools --- diff --git a/ackrc b/ackrc deleted file mode 100644 index 6b7d5e9..0000000 --- a/ackrc +++ /dev/null @@ -1,15 +0,0 @@ ---type-add=html=.haml ---type-add=css=.sass,.scss,.less ---type-add=js=.rjs,.coffee ---type-add=ruby=.erb ---ignore-dir=vendor ---ignore-dir=log ---ignore-dir=tmp ---ignore-dir=doc ---ignore-dir=public/system ---ignore-dir=asset_packages ---ignore-dir=node_modules ---sort-files ---color ---follow ---group diff --git a/agignore b/agignore deleted file mode 100644 index 9e78616..0000000 --- a/agignore +++ /dev/null @@ -1,5 +0,0 @@ -tmp -public/system -asset_packages -node_modules -*.min.js diff --git a/bash_profile b/bash_profile deleted file mode 100644 index df81cbe..0000000 --- a/bash_profile +++ /dev/null @@ -1,85 +0,0 @@ -export PATH=/usr/local/bin:/usr/local/sbin:$PATH -export NODE_PATH=/usr/local/lib/node_modules:$NODE_PATH - -#Java HOME Adition -export JAVA_HOME=$(/usr/libexec/java_home) - -export TERM=screen-256color - -#git function -function _set_git_envar_info() { - GIT_BRANCH="" - GIT_PREFIX="" - GIT_STATE="" - CHECK_SHIT="lol" - RVM_COMMAND=$(rvm-prompt) - if [[ $RVM_COMMAND == "" ]] - then - RVM_COMMAND="system" - fi - if [ -f `which git` ]; - then - local STATUS - STATUS=$(git status 2>/dev/null) - if [[ -z $STATUS ]] - then - return - fi - GIT_BRANCH="$(git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/')" - if [[ -n "$GIT_BRANCH" ]] - then - GIT_PREFIX=" on " - fi - if [[ "$STATUS" == *'working directory clean'* ]] - then - GIT_STATE="" - else - GIT_STATE="" - if [[ "$STATUS" == *'Changes to be committed:'* ]] - then - GIT_STATE='!' # Index has files staged for commit - fi - if [[ "$STATUS" == *'Changed but not updated:'* ]] - then - GIT_STATE="?" # Working tree has files modified but unstaged - fi - if [[ "$STATUS" == *'Untracked files:'* ]] - then - GIT_STATE='?' # Working tree has untracked files - fi - fi - fi -} - -export -f _set_git_envar_info - -#this thing for my prompt. -export PROMPT_COMMAND="_set_git_envar_info" -export PS1='\[\e[0;31m\]\u\[\e[0m\] at \[\e[0;33m\]\h\[\e[0m\] in \[\e[0;32m\]\w\[\e[0m\]$GIT_PREFIX\[\e[1;34m\]$GIT_BRANCH\[\e[0m\]\[\e[0;32m\]$GIT_STATE \[\e[0;30m\]($RVM_COMMAND) \[\e[0m\] \n\$ ' - -#display fortune when I start -echo -e "\033[30m" -/usr/local/bin/fortune -echo -e "\033[m" - -#Editor. -export EDITOR="vim" -export VISUAL="vim" - -#some aliases. -alias dwarffortress="/Applications/Dwarf\ Fortress/df" -alias ls="ls -FG" -alias rspec="rspec --color" - -#Git utility aliases -alias gpsc="git push origin $GIT_BRANCH" -alias gplc="git pull origin $GIT_BRANCH" - -#Enable Bash Completion -if [ -f `brew --prefix`/etc/bash_completion ]; then - . `brew --prefix`/etc/bash_completion -fi - -#Screeninator and RVM scripts -[[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm -