blob: 91a9b17c2e10f8fc6823110149475ca1ef87c8cb (
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
|
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
)
. /usr/share/oh-my-zsh/oh-my-zsh.sh
|