mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-19 02:02:32 +01:00
Importing initial files after reorganizing stuff.
This commit is contained in:
parent
e20401e04e
commit
5da20b9ddd
12 changed files with 259 additions and 0 deletions
34
zshrc
Normal file
34
zshrc
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
export EDITOR=/opt/local/bin/joe
|
||||
export PAGER=less
|
||||
export ZSH=$HOME/zsh
|
||||
export LC_CTYPE=en_US.UTF-8
|
||||
|
||||
# TODO: Refactor this sometimes soon...
|
||||
source $ZSH/colors.zsh
|
||||
source $ZSH/aliases.zsh
|
||||
source $ZSH/completion.zsh
|
||||
source $ZSH/rake_completion.zsh
|
||||
source $ZSH/functions.zsh
|
||||
source $ZSH/git.zsh
|
||||
source $ZSH/history.zsh
|
||||
source $ZSH/grep.zsh
|
||||
source $ZSH/prompt.zsh
|
||||
|
||||
# Uncomment if you have a projects.zsh file
|
||||
# source $ZSH/projects.zsh
|
||||
|
||||
# Directory stuff.
|
||||
|
||||
setopt AUTO_NAME_DIRS
|
||||
|
||||
# Speed stuff.
|
||||
|
||||
#setopt NO_BEEP
|
||||
setopt AUTO_CD
|
||||
setopt MULTIOS
|
||||
setopt CDABLEVARS
|
||||
|
||||
# Customize to your needs...
|
||||
export PATH=~/bin:/opt/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/local/sbin:/opt/local/lib/postgresql83/bin
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue