-
Notifications
You must be signed in to change notification settings - Fork 0
/
zshrc
65 lines (46 loc) · 1.32 KB
/
zshrc
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
57
58
59
60
61
62
63
64
65
# ========================
# OH MY ZSH DEFAULTS
# ========================
# see docs for prefs you can enable
# Path to your oh-my-zsh installation.
export ZSH=/Users/mike/.oh-my-zsh
# Set name of the theme to load.
ZSH_THEME="robbyrussell"
# Uncomment the following line if you want to change the command execution time
# stamp shown in the history command output.
# The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
HIST_STAMPS="mm/dd/yyyy"
# ========================
# PERSONAL CONFIG
# ========================
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
source $ZSH/oh-my-zsh.sh
autoload colors && colors
# dont save lines with spaces prepended
export HISTIGNORE=' *'
# Brew
eval "$(/opt/homebrew/bin/brew shellenv)"
# ========================
# ALIASES
# ========================
alias be='bundle exec'
alias ll='ls -lG'
# ========================
# ENV VARS
# ========================
export MAILCHECK=0
export EDITOR='code -w'
export DATABASE_USER=mike
# ========================
# PATH
# ========================
source $HOME/.g/g.zsh
source $HOME/.prwd/prwd.zsh
# == ASDF ==
# export PATH=$PATH:/Applications
# . $HOME/.asdf/asdf.sh
# . $HOME/.asdf/completions/asdf.bash
export PATH=$PATH:$HOME/bin
# == GO SETUP ==
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin