Cleaned bash it up

This commit is contained in:
Robert R Evans
2010-10-02 12:29:17 -07:00
parent 74fe8378bd
commit 76ed68d18c
21 changed files with 37 additions and 13 deletions

View File

@@ -1,3 +1,5 @@
#!/bin/bash
# List directory contents
alias sl=ls
alias ls='ls -G' # Compact view, show colors

View File

@@ -1,3 +1,5 @@
#!/bin/bash
# colored grep
export GREP_OPTIONS='--color=auto'
export GREP_COLOR='1;33'
@@ -5,8 +7,5 @@ export GREP_COLOR='1;33'
# colored ls
export LSCOLORS='Gxfxcxdxdxegedabagacad'
# Apply theming defaults
PS1="%n@%m:%~%# "
# Load the theme
source "$BASH/themes/$BASH_THEME/$BASH_THEME.bash"

View File

@@ -1,2 +0,0 @@
export GREP_OPTIONS='--color=auto'
export GREP_COLOR='1;32'

View File

@@ -1,3 +1,5 @@
#!/bin/bash
# append to bash_history if Terminal.app quits
shopt -s histappend