Skip to content

Instantly share code, notes, and snippets.

@unleftie
Created January 14, 2024 09:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save unleftie/9e16591f1119b7fc8f94db85f203447e to your computer and use it in GitHub Desktop.
Save unleftie/9e16591f1119b7fc8f94db85f203447e to your computer and use it in GitHub Desktop.
zsh-config
export ZSH=$HOME/.oh-my-zsh
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES
export EDITOR='nano'
export VISUAL='nano'
ZSH_THEME="risto"
zstyle ':omz:update' mode auto
zstyle ':omz:update' frequency 60
plugins=(git zsh-syntax-highlighting zsh-autosuggestions)
source $ZSH/oh-my-zsh.sh
alias n="nano"
alias upd="sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo apt autoclean -y && sudo apt clean -y"
alias l="ls -lap --group-directories-first"
alias c="clear"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment