From e831415ae39a6fa9b30a118fec1b5ff8b3f4016c Mon Sep 17 00:00:00 2001 From: "Lance R. Vick" Date: Sun, 1 Dec 2024 17:06:51 -0800 Subject: [PATCH] more zsh setup --- .gitmodules | 3 +++ zsh/.oh-my-zsh | 1 + zsh/.zshrc | 3 +-- 3 files changed, 5 insertions(+), 2 deletions(-) create mode 160000 zsh/.oh-my-zsh diff --git a/.gitmodules b/.gitmodules index 44eeccc..36014ac 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [submodule "zsh/.zsh/themes/powerlevel10k"] path = zsh/.zsh/themes/powerlevel10k url = https://github.com/romkatv/powerlevel10k.git +[submodule "zsh/.oh-my-zsh"] + path = zsh/.oh-my-zsh + url = https://github.com/ohmyzsh/ohmyzsh.git diff --git a/zsh/.oh-my-zsh b/zsh/.oh-my-zsh new file mode 160000 index 0000000..69a6359 --- /dev/null +++ b/zsh/.oh-my-zsh @@ -0,0 +1 @@ +Subproject commit 69a6359f7cf8978d464573fb7b023ee3cd00181a diff --git a/zsh/.zshrc b/zsh/.zshrc index 71e60d3..c232be6 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -3,6 +3,7 @@ ZSH=$HOME/.oh-my-zsh DEFAULT_USER="lrvick" DISABLE_AUTO_UPDATE="true" COMPLETION_WAITING_DOTS="true" +ZSH_THEME="${HOME}/.zsh/themes/powerlevel10k" plugins=(git git-extras mosh vi-mode docker pass systemd z taskwarrior docker docker-compose) source $ZSH/oh-my-zsh.sh @@ -10,5 +11,3 @@ source $ZSH/oh-my-zsh.sh pl_zsh_module=/usr/share/powerline/bindings/zsh/powerline.zsh [ -f "$pl_zsh_module" ] && source "$pl_zsh_module" -# OPAM configuration -. /home/lrvick/.opam/opam-init/init.zsh > /dev/null 2> /dev/null || true