From c82269f7d296b7c3ac7d15945fe0bf2d423fe39a Mon Sep 17 00:00:00 2001 From: Gaiety Date: Thu, 2 Apr 2026 21:00:49 -0600 Subject: [PATCH] different zsh theme --- .zshrc | 3 ++- mise-tasks/install-ohmyzsh | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 4b45ce0..3c3b57b 100644 --- a/.zshrc +++ b/.zshrc @@ -1,7 +1,7 @@ export EDITOR='nvim' export ZSH="$HOME/.oh-my-zsh" -ZSH_THEME="robbyrussell" +ZSH_THEME="bira" zstyle ':omz:update' mode reminder # just remind me to update when it's time ENABLE_CORRECTION="true" COMPLETION_WAITING_DOTS="true" @@ -11,6 +11,7 @@ plugins=( mise zoxide zsh-autosuggestions + zsh-syntax-highlighting ) source $ZSH/oh-my-zsh.sh diff --git a/mise-tasks/install-ohmyzsh b/mise-tasks/install-ohmyzsh index 1d7f5b6..1d82bbb 100755 --- a/mise-tasks/install-ohmyzsh +++ b/mise-tasks/install-ohmyzsh @@ -1,5 +1,10 @@ #!/usr/bin/env bash #MISE description="Install oh-my-zsh" +echo oh-my-zsh sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" + +echo zsh-autosuggestions git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions +echo zsh-syntax-highlighting +git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting