-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
36 lines (26 loc) · 825 Bytes
/
.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
# Antigen packages
source $HOME/.config/antigen/antigen.zsh
antigen use oh-my-zsh
antigen bundle git
antigen bundle nvm
antigen bundle zsh-users/zsh-syntax-highlighting
# antigen bundle larkery/zsh-histdb
antigen bundle zsh-users/zsh-autosuggestions
antigen apply
# Aliases
alias rm='rm -i'
alias mv='mv -i'
alias cp='cp -i'
alias ls='eza --icons'
alias ll='ls -l -g'
alias dot='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME'
alias v='nvim'
alias lzg='lazygit'
alias lzd='lazydocker'
## [Completion]
## Completion scripts setup. Remove the following line to uninstall
[[ -f /Users/mvst/.dart-cli-completion/zsh-config.zsh ]] && . /Users/mvst/.dart-cli-completion/zsh-config.zsh || true
## [/Completion]
eval "$(starship init zsh)"
# Added by Windsurf
export PATH="/Users/frey_do/.codeium/windsurf/bin:$PATH"