forked from colonelpanic/dotfiles
fix ls colors issue somehow...
This commit is contained in:
parent
0e22f67464
commit
153d70beb0
11
dotfiles/MacOSX/environment.plist
Normal file
11
dotfiles/MacOSX/environment.plist
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
|
||||||
|
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>PATH</key>
|
||||||
|
<integer></integer>
|
||||||
|
<key></key>
|
||||||
|
<array/>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
@ -1 +1 @@
|
|||||||
Subproject commit 6929aa194c4759e6115bcc20464653700dd3a657
|
Subproject commit 7e87d26e6e063d00f73f10219eb8d36942a7b847
|
@ -8,6 +8,7 @@ Purple='\e[0;35m' # Purple
|
|||||||
Cyan='\e[0;36m' # Cyan
|
Cyan='\e[0;36m' # Cyan
|
||||||
White='\e[0;37m' # White
|
White='\e[0;37m' # White
|
||||||
BoldYellow='\e[1;33m' # Yellow
|
BoldYellow='\e[1;33m' # Yellow
|
||||||
|
Gray="\[\033[1;30m\]"
|
||||||
|
|
||||||
|
|
||||||
function current_directory() {
|
function current_directory() {
|
||||||
@ -54,6 +55,7 @@ function prompt_basic_colors() {
|
|||||||
export SEPARATOR_COLOR="$Black"
|
export SEPARATOR_COLOR="$Black"
|
||||||
export HOSTNAME_COLOR="$Blue"
|
export HOSTNAME_COLOR="$Blue"
|
||||||
export CURRENT_DIRECTORY_COLOR="$BoldYellow"
|
export CURRENT_DIRECTORY_COLOR="$BoldYellow"
|
||||||
|
export SEPARATOR_COLOR="$Gray"
|
||||||
}
|
}
|
||||||
|
|
||||||
function print_with_color() {
|
function print_with_color() {
|
||||||
|
@ -10,8 +10,6 @@ add_to_back_of_path "$HOME/.local/lib/python2.6/site-packages"
|
|||||||
hash brew 2>/dev/null && add_to_front_of_path "$(brew --prefix coreutils)/libexec/gnubin"
|
hash brew 2>/dev/null && add_to_front_of_path "$(brew --prefix coreutils)/libexec/gnubin"
|
||||||
add_to_front_of_path "/usr/local/bin"
|
add_to_front_of_path "/usr/local/bin"
|
||||||
|
|
||||||
add_to_back_of_path "/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/"
|
|
||||||
|
|
||||||
for filename in ~/.lib/shellrc/*; do
|
for filename in ~/.lib/shellrc/*; do
|
||||||
source $filename
|
source $filename
|
||||||
done
|
done
|
||||||
@ -19,9 +17,11 @@ done
|
|||||||
if is_osx; then
|
if is_osx; then
|
||||||
export CFLAGS=-Qunused-arguments
|
export CFLAGS=-Qunused-arguments
|
||||||
export CPPFLAGS=-Qunused-arguments
|
export CPPFLAGS=-Qunused-arguments
|
||||||
|
add_to_back_of_path "/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
add_to_back_of_path "$(dotfiles_directory)/resources/python"
|
add_to_back_of_path "$(dotfiles_directory)/resources/python"
|
||||||
|
add_to_back_of_path "/usr/local/sbin"
|
||||||
|
|
||||||
# Access gnu man pages.
|
# Access gnu man pages.
|
||||||
MANPATH="$HOMEBREW_PREFIX/opt/coreutils/libexec/gnuman:$MANPATH"
|
MANPATH="$HOMEBREW_PREFIX/opt/coreutils/libexec/gnuman:$MANPATH"
|
||||||
|
@ -6,8 +6,10 @@ alias tmux_cb_to_remote_cb='tmux saveb - | linux_nc_paste_to_remote_clipboard'
|
|||||||
alias timestamp='date +%s'
|
alias timestamp='date +%s'
|
||||||
alias fn='find . -name '
|
alias fn='find . -name '
|
||||||
alias prj='cd ~/Projects'
|
alias prj='cd ~/Projects'
|
||||||
alias tox27='tox -e py27 --'
|
alias t27='tox -e py27 -- '
|
||||||
|
alias tvenv='tox -e venv -- '
|
||||||
alias reload_tmux='tmux source-file ~/.tmux.conf'
|
alias reload_tmux='tmux source-file ~/.tmux.conf'
|
||||||
|
alias which='type'
|
||||||
|
|
||||||
# enables the sudoing of aliases.
|
# enables the sudoing of aliases.
|
||||||
alias sudo='sudo '
|
alias sudo='sudo '
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
source ~/.lib/shellrc.sh
|
source ~/.lib/shellrc.sh
|
||||||
source ~/.lib/zsh.sh
|
source ~/.lib/zsh.sh
|
||||||
test -r ~/custom.zsh && source ~/custom.zsh
|
test -r ~/custom.zsh && source ~/custom.zsh
|
||||||
|
Loading…
Reference in New Issue
Block a user