forked from ChrisBuchholz/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzshrc-osx
More file actions
37 lines (23 loc) · 992 Bytes
/
zshrc-osx
File metadata and controls
37 lines (23 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
export PATH=/usr/local/sbin:/usr/local/bin:/usr/local/share/python:$PATH
export MANPATH=$HOMEBREWDIR/share/man:$MANPATH
[[ -e $HOME/.local/bin ]] && export PATH=$HOME/.local/bin:$PATH
[[ -e $HOME/.gem/ruby/*/bin ]] && export PATH=$HOME/.gem/ruby/*/bin:$PATH
[[ -e `echo $(brew --cellar python)/*/bin` ]] && export PATH=$python_bin:$PATH
[[ -e `echo $(brew --cellar python)/*/man` ]] && export MANPATH=$python_man:$MANPATH
export VISUAL=mvim
export LANG="da_DK.UTF-8"
export LC_ALL="da_DK.UTF-8"
export CLICOLOR=1
export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx
WORKON_HOME=$HOME/.virtualenvs
virtualenvwrapper_path=/usr/local/share/python/virtualenvwrapper.sh
[[ -e $virtualenvwrapper_path ]] && source $virtualenvwrapper_path
export NODE_PATH="/usr/local/lib/node_modules"
plugins=(${plugins[@]} brew osx)
#### ---- functions ---- ####
# open man pages in Preview.app
pman () {
man -t $1 | open -f -a /Applications/Preview.app
}
#### ---- functions ---- ####
alias vim='mvim -v'