]> git.frustrated-labs.net Git - dotfiles.git/commitdiff
add zsh configuration
authorAlexander Goussas <[email protected]>
Thu, 26 Dec 2024 02:30:32 +0000 (21:30 -0500)
committerAlexander Goussas <[email protected]>
Thu, 26 Dec 2024 02:30:32 +0000 (21:30 -0500)
Makefile.common
zsh/.zshrc [new file with mode: 0644]

index 1c9d7fc20035fe6e21e7cbfb7bea963a84cdc2da..5fbf587eccd9b8e07b1ad6176da64c1e7c40de0c 100644 (file)
@@ -1 +1 @@
-PKGS_COMMON := nvim
+PKGS_COMMON := nvim zsh
diff --git a/zsh/.zshrc b/zsh/.zshrc
new file mode 100644 (file)
index 0000000..0423e9a
--- /dev/null
@@ -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