-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_zshrc
53 lines (35 loc) · 1.16 KB
/
dot_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
### ZSH HOME
export ZSH=$HOME/.zsh
### ---- history config -------------------------------------
export HISTFILE=$ZSH/.zsh_history
# How many commands zsh will load to memory.
export HISTSIZE=10000
# How many commands history will save on file.
export SAVEHIST=10000
# History won't save duplicates.
setopt HIST_IGNORE_ALL_DUPS
# History won't show duplicates on search.
setopt HIST_FIND_NO_DUPS
source ~/antigen.zsh
antigen use oh-my-zsh
# Syntax highlighting bundle.
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle zsh-users/zsh-autosuggestions
antigen bundle zsh-users/zsh-completions
# Load the theme.
antigen theme amuse
# Tell Antigen that you're done.
antigen apply
alias dev="cd ~/Documents/development"
export PATH=$PATH:~/.local/bin
. "$HOME/.asdf/asdf.sh"
touch -a "$HOME/.local.zshrc"
source "$HOME/.local.zshrc"
alias ssh="TERM=xterm-256color ssh"
export ASDF_GOLANG_MOD_VERSION_ENABLED=true
. ~/.asdf/plugins/golang/set-env.zsh
export PATH="$PATH:$HOME/.asdf/installs/golang/1.21.0/packages/bin"
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
alias assist="mac ollama run codellama"
alias big-assist="mac ollama run phind-codellama:34b-v2"