Created
August 9, 2025 00:04
-
-
Save SumonMSelim/98f1dac090ca02f940df5ed44e2d3ba0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$PATH | |
# Path to your Oh My Zsh installation. | |
export ZSH="$HOME/.oh-my-zsh" | |
ZSH_THEME="agnoster" | |
plugins=(git) | |
source $ZSH/oh-my-zsh.sh | |
# User configuration | |
export MANPATH="/usr/local/man:$MANPATH" | |
export LANG=en_US.UTF-8 | |
# Aliases | |
alias zshrc="nano ~/.zshrc" | |
alias zshsrc="source ~/.zshrc" | |
alias upgrade="apt update && apt upgrade -y && apt autoremove -y" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment