blob: 49030ef654fda0a783c95c00b5138a46f68b0c5b (
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
|
setopt completealiases
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
|