-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_zshrc
More file actions
33 lines (25 loc) · 771 Bytes
/
Copy pathdot_zshrc
File metadata and controls
33 lines (25 loc) · 771 Bytes
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
source $HOME/.antidote/antidote.zsh
# Initialize antidote's dynamic mode, which changes `antidote bundle`
# from static mode
source <(antidote init)
# Load the OMZ bridge
antidote bundle getantidote/use-omz
# Load the OMZ library
antidote bundle ohmyzsh/ohmyzsh path:lib
# Bundles from github
antidote bundle zsh-users/zsh-autosuggestions
antidote bundle zsh-users/zsh-syntax-highlighting
antidote bundle zsh-users/zsh-completions
# Enable OMZ plugins
antidote bundle ohmyzsh/ohmyzsh path:plugins/mise
# Load the theme.
antidote bundle romkatv/powerlevel10k
# Set up fzf key bindings and fuzzy fuzzy completion
source <(fzf --zsh)
# Personal aliases
alias vim="nvim"
alias zshrc="vim ~/.zshrc"
alias l="eza"
alias ls="eza -ah"
alias ll="eza -lah"
alias cat="bat"