From 0d0b6c278786522e9477bcb599c3afa1ebc45999 Mon Sep 17 00:00:00 2001 From: Alexander Goussas Date: Wed, 25 Dec 2024 21:30:32 -0500 Subject: [PATCH] add zsh configuration --- Makefile.common | 2 +- zsh/.zshrc | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 zsh/.zshrc 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 -- 2.43.0