From: Alexander Goussas Date: Thu, 26 Dec 2024 02:30:32 +0000 (-0500) Subject: add zsh configuration X-Git-Url: http://git.frustrated-labs.net/?a=commitdiff_plain;h=0d0b6c278786522e9477bcb599c3afa1ebc45999;p=dotfiles.git add zsh configuration --- diff --git a/Makefile.common b/Makefile.common index 1c9d7fc..5fbf587 100644 --- a/Makefile.common +++ b/Makefile.common @@ -1 +1 @@ -PKGS_COMMON := nvim +PKGS_COMMON := nvim zsh diff --git a/zsh/.zshrc b/zsh/.zshrc new file mode 100644 index 0000000..0423e9a --- /dev/null +++ b/zsh/.zshrc @@ -0,0 +1,13 @@ +if command -v oh-my-posh >/dev/null; then + eval "$(oh-my-posh init zsh --config $(brew --prefix oh-my-posh)/themes/material.omp.json)" +fi + +export SDKMAN_DIR="$HOME/.sdkman" +[[ -s "$HOME/.sdkman/bin/sdkman-init.sh" ]] && source "$HOME/.sdkman/bin/sdkman-init.sh" + +alias ls='ls --color=auto' +alias gs='git status' + + +PATH="$PATH:$HOME/go/bin" +export PATH