-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzshrc
More file actions
68 lines (50 loc) · 1.52 KB
/
Copy pathzshrc
File metadata and controls
68 lines (50 loc) · 1.52 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
57
58
59
60
61
62
63
64
65
66
67
68
export ZSH="${HOME}/.oh-my-zsh"
export LANG=en_US.UTF-8
export LANGUAGE=en_US:en
export LC_ALL=en_US.UTF-8
export CLICOLOR_FORCE=1
export TERM=xterm-256color
ZSH_THEME="simple"
CASE_SENSITIVE="true"
plugins=(git
zsh-interactive-cd
vi-mode
alias-finder
command-not-found
extract
history-substring-search
zsh-syntax-highlighting
zsh-autosuggestions
)
source ${ZSH}/oh-my-zsh.sh
export EDITOR='nvim'
export VIEWER='nvim'
export PATH=${HOME}/.local/bin:${PATH}
export PATH=/usr/local/go/bin:${PATH}
export GOPATH=${HOME}/go
export PATH=${PATH}:${GOPATH}/bin
# Add cargo binaries to PATH
export PATH=${HOME}/.cargo/bin:${PATH}
# pperf
export PATH=/usr/local/go/pkg/tool/linux_amd64/:${PATH}
# claude
export PATH=${HOME}/.claude/local/:${PATH}
# Docker settings
export DOCKER_HOST=unix:///var/run/docker.sock
# Activate Python virtual environment
source ${HOME}/.venv/bin/activate
alias ls="eza"
function colorize() {
if [ "$1" = "cut" ]; then
# Pass the "cut" argument to the script
python3 ~/.colorize_script.py "cut"
else
# Call script without arguments for original behavior
# If other arguments were passed to colorize (e.g. colorize foo bar),
# they will be ignored by the script if it's not expecting them.
# The script currently only checks for "cut" or no arguments.
python3 ~/.colorize_script.py
fi
}
sudo chmod 0666 /var/run/docker.sock
export CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1