-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.zshrc
More file actions
56 lines (41 loc) · 1.62 KB
/
.zshrc
File metadata and controls
56 lines (41 loc) · 1.62 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env zsh
#====================================================================
# ZSHELL RC (Run per shell)
#====================================================================
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# Load aliases
load_dot_file "myShell/aliases"
# Load functions
load_dot_file "myShell/func"
# Load my prompt!
load_dot_file "myShell/prompt"
# Load local files
# source_file "~/."
# Load Antigen and hand off to its rc file
# source "$ZDOTDIR/antigen/antigen.zsh"
# source "$ZDOTDIR/.antigenrc"
# Load extra bash files. 1st from Dropbox (if it exists) than from HOME (if it exists)
# files="colors prompt fn aliases"
# files="fn aliases"
# for file in $files; do
# source_file "$ZDOTDIR/extras/$file"
# source_file "$HOME/.z$file"
# done
# Enable auto-rehash to pick up new bin files
# zstyle ':completion:*' rehash true
# Load my prompt
#source_file $ZDOTDIR/extras/prompt
#autoload -U colors && colors
# alias ssh-sunray="env TERM=xterm ssh"
#----------------------
# Settings and Config
#----------------------
# Bash history settings
# HISTCONTROL=ignoreboth # Ignore duplicate commands and commands that start w/ space (ignoredups:ignorespace)
# HISTSIZE=1000 # Number of items in the bash session's history
# HISTFILESIZE=100000 # Number of items in the history file
# shopt -s histappend # Append BASH session history to the history file (not simply write it)
# check the window size after each command and, if necessary, update the values of LINES and COLUMNS.
# shopt -s checkwinsize
# export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting