blob: 25bf8096d34cdaf7a05c07fb9b922c32c2e422ee (
plain)
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
|
setopt completealiases
alias dotfiles='/usr/bin/git --git-dir="$HOME/.dotfiles/" --work-tree="$HOME"'
ZSH_CUSTOM="$HOME/.config/zsh"
# Disabled, tab completion garbles the output :'(
ZSH_THEME="ewout"
#ZSH_THEME="funky"
zstyle ':omz:update' mode auto
plugins=(
archlinux
cp
git
git-commit
git-escape-magic
git-extras
gitignore
kate
man
node
npm
pip
podman
poetry
pre-commit
python
ssh
sudo
systemd
zsh-interactive-cd
zsh-navigation-tools
)
alias zluda="LD_LIBRARY_PATH=\"<ZLUDA_DIRECTORY>:$LD_LIBRARY_PATH\""
. /usr/share/oh-my-zsh/oh-my-zsh.sh
|