aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2019-03-14 19:24:59 +0100
committerBen Beltran <ben@nsovocal.com>2019-03-14 19:24:59 +0100
commitac88944771c9006d4299ab8f8d54a4ff0555d099 (patch)
treeb370cd11f8ba9389cf1803a829252c87be59a6cf
parent3d3e182ac0c5c2f91a90771b79b5c221102f9635 (diff)
Remove configurations for unused tools
-rw-r--r--ackrc15
-rw-r--r--agignore5
-rw-r--r--bash_profile85
3 files changed, 0 insertions, 105 deletions
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
-