aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/zshrc
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-03-28 15:17:39 -0500
committerToby Vincent <tobyv13@gmail.com>2021-03-28 15:17:39 -0500
commit50963d553cbc4635a2321f676790b034dbd8a5bd (patch)
treeec1e8df6710133a4fa91264edd0306cd5bd0eebd /zshrc
parent715134a2eed74ff1dbaf4409e28641add9610ac5 (diff)
fix: fixed antigen issue
Diffstat (limited to 'zshrc')
-rwxr-xr-xzshrc18
1 files changed, 15 insertions, 3 deletions
diff --git a/zshrc b/zshrc
index 23b8bf2..39f137f 100755
--- a/zshrc
+++ b/zshrc
@@ -13,11 +13,23 @@ hash -d d=${HOME}/docker
[[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]] && source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
+source $ZSH_BASE/antigen/antigen.zsh
source $ZSH_BASE/zsh/setopt.zsh
source $ZSH_BASE/zsh/prompt.zsh
source $ZSH_BASE/zsh/aliases.zsh
source $ZSH_BASE/zsh/keybindings.zsh
-source $ZSH_BASE/zsh/plugins.zsh
-
-
[ -n "${WSL_DISTRO_NAME+1}" ] && source $ZSH_BASE/zsh/wsl.zsh
+
+antigen use oh-my-zsh
+antigen bundle git
+antigen bundle ssh-agent
+antigen bundle fzf
+antigen bundle dotnet
+antigen bundle docker
+antigen bundle docker-compose
+antigen bundle command-not-found
+antigen bundle zsh-users/zsh-syntax-highlighting
+antigen bundle zsh-users/zsh-autosuggestions
+antigen bundle memark/zsh-dotnet-completion
+antigen theme romkatv/powerlevel10k.git
+antigen apply \ No newline at end of file