Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
- # Initialization code that may require console input (password prompts, [y/n]
- # confirmations, etc.) must go above this block; everything else may go below.
- if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
- source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
- fi
- # If you come from bash you might have to change your $PATH.
- # export PATH=$HOME/bin:/usr/local/bin:$PATH
- # Path to your oh-my-zsh installation.
- ZSH=/usr/share/oh-my-zsh/
- # Set name of the theme to load --- if set to "random", it will
- # load a random theme each time oh-my-zsh is loaded, in which case,
- # to know which specific one was loaded, run: echo $RANDOM_THEME
- # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
- ZSH_THEME="robbyrussell"
- # Set list of themes to pick from when loading at random
- # Setting this variable when ZSH_THEME=random will cause zsh to load
- # a theme from this variable instead of looking in $ZSH/themes/
- # If set to an empty array, this variable will have no effect.
- # ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
- # Uncomment the following line to use case-sensitive completion.
- # CASE_SENSITIVE="true"
- # Uncomment the following line to use hyphen-insensitive completion.
- # Case-sensitive completion must be off. _ and - will be interchangeable.
- # HYPHEN_INSENSITIVE="true"
- # Uncomment the following line to disable bi-weekly auto-update checks.
- DISABLE_AUTO_UPDATE="true"
- # Uncomment the following line to automatically update without prompting.
- # DISABLE_UPDATE_PROMPT="true"
- # Uncomment the following line to change how often to auto-update (in days).
- # export UPDATE_ZSH_DAYS=13
- # Uncomment the following line if pasting URLs and other text is messed up.
- # DISABLE_MAGIC_FUNCTIONS="true"
- # Uncomment the following line to disable colors in ls.
- # DISABLE_LS_COLORS="true"
- # Uncomment the following line to disable auto-setting terminal title.
- # DISABLE_AUTO_TITLE="true"
- # Uncomment the following line to enable command auto-correction.
- # ENABLE_CORRECTION="true"
- # Uncomment the following line to display red dots whilst waiting for completion.
- # COMPLETION_WAITING_DOTS="true"
- # Uncomment the following line if you want to disable marking untracked files
- # under VCS as dirty. This makes repository status check for large repositories
- # much, much faster.
- # DISABLE_UNTRACKED_FILES_DIRTY="true"
- # Uncomment the following line if you want to change the command execution time
- # stamp shown in the history command output.
- # You can set one of the optional three formats:
- # "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
- # or set a custom format using the strftime function format specifications,
- # see 'man strftime' for details.
- # HIST_STAMPS="mm/dd/yyyy"
- #SAVEHIST=10
- #HISTFILE=~/.zsh_history
- # Would you like to use another custom folder than $ZSH/custom?
- # ZSH_CUSTOM=/path/to/new-custom-folder
- # Which plugins would you like to load?
- # Standard plugins can be found in $ZSH/plugins/
- # Custom plugins may be added to $ZSH_CUSTOM/plugins/
- # Example format: plugins=(rails git textmate ruby lighthouse)
- # Add wisely, as too many plugins slow down shell startup.
- plugins=(git)
- # User configuration
- # export MANPATH="/usr/local/man:$MANPATH"
- # You may need to manually set your language environment
- # export LANG=en_US.UTF-8
- # Preferred editor for local and remote sessions
- # if [[ -n $SSH_CONNECTION ]]; then
- # export EDITOR='vim'
- # else
- # export EDITOR='mvim'
- # fi
- # Compilation flags
- # export ARCHFLAGS="-arch x86_64"
- # Set personal aliases, overriding those provided by oh-my-zsh libs,
- # plugins, and themes. Aliases can be placed here, though oh-my-zsh
- # users are encouraged to define aliases within the ZSH_CUSTOM folder.
- # For a full list of active aliases, run `alias`.
- #
- # Example aliases
- # alias zshconfig="mate ~/.zshrc"
- # alias ohmyzsh="mate ~/.oh-my-zsh"
- ZSH_CACHE_DIR=$HOME/.cache/oh-my-zsh
- if [[ ! -d $ZSH_CACHE_DIR ]]; then
- mkdir $ZSH_CACHE_DIR
- fi
- ### SOURCE ###
- source $ZSH/oh-my-zsh.sh
- source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme
- # To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
- [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
- source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
- source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
- ### ALIASES ###
- # navigation
- alias ..='cd ..'
- alias ...='cd ../..'
- alias .3='cd ../../..'
- alias .4='cd ../../../..'
- alias .5='cd ../../../../..'
- # pacman and yay
- alias pacsyu='sudo pacman -Syyu' # update only standard pkgs
- alias yaysua="yay -Sua --noconfirm" # update only AUR pkgs
- alias yaysyu="yay -Syu --noconfirm" # update standard pkgs and AUR pkgs
- alias unlock="sudo rm /var/lib/pacman/db.lck" # remove pacman lock
- alias cleanup='sudo pacman -Rns $(pacman -Qtdq)' # remove orphaned packages
- # get fastest mirrors
- alias mirror="sudo reflector -f 30 -l 30 --number 10 --verbose --save /etc/pacman.d/mirrorlist"
- alias mirrord="sudo reflector --latest 50 --number 20 --sort delay --save /etc/pacman.d/mirrorlist"
- alias mirrors="sudo reflector --latest 50 --number 20 --sort score --save /etc/pacman.d/mirrorlist"
- alias mirrora="sudo reflector --latest 50 --number 20 --sort age --save /etc/pacman.d/mirrorlist"
- # Changing "ls" to "exa"
- alias ls='exa -al --color=always --group-directories-first' # my preferred listing
- alias la='exa -a --color=always --group-directories-first' # all files and dirs
- alias ll='exa -l --color=always --group-directories-first' # long format
- alias lt='exa -aT --color=always --group-directories-first' # tree listing
- alias l.='exa -a | egrep "^\."'
- # Colorize grep output (good for log files)
- alias grep='grep --color=auto'
- alias egrep='egrep --color=auto'
- alias fgrep='fgrep --color=auto'
- # confirm before overwriting something
- alias cp="cp -i"
- alias mv='mv -i'
- alias rm='rm -i'
- # adding flags
- alias df='df -h' # human-readable sizes
- alias free='free -m' # show sizes in MB
- ## get top process eating memory
- alias psmem='ps auxf | sort -nr -k 4'
- alias psmem10='ps auxf | sort -nr -k 4 | head -10'
- ## get top process eating cpu ##
- alias pscpu='ps auxf | sort -nr -k 3'
- alias pscpu10='ps auxf | sort -nr -k 3 | head -10'
- # git
- alias addup='git add -u'
- alias addall='git add .'
- alias branch='git branch'
- alias checkout='git checkout'
- alias clone='git clone'
- alias commit='git commit -m'
- alias fetch='git fetch'
- alias pull='git pull origin'
- alias push='git push origin'
- alias status='git status'
- alias tag='git tag'
- alias newtag='git tag -a'
- # shutdown or reboot
- alias ssn="sudo shutdown now"
- alias sr="sudo reboot"
- # get error messages from journalctl
- alias jctl="journalctl -p 3 -xb"
- # gpg encryption
- # verify signature for isos
- alias gpg-check="gpg2 --keyserver-options auto-key-retrieve --verify"
- # receive the key of a developer
- alias gpg-retrieve="gpg2 --keyserver-options auto-key-retrieve --receive-keys"
- # youtube-dl
- alias yta-aac="youtube-dl --extract-audio --audio-format aac "
- alias yta-best="youtube-dl --extract-audio --audio-format best "
- alias yta-flac="youtube-dl --extract-audio --audio-format flac "
- alias yta-m4a="youtube-dl --extract-audio --audio-format m4a "
- alias yta-mp3="youtube-dl --extract-audio --audio-format mp3 "
- alias yta-opus="youtube-dl --extract-audio --audio-format opus "
- alias yta-vorbis="youtube-dl --extract-audio --audio-format vorbis "
- alias yta-wav="youtube-dl --extract-audio --audio-format wav "
- alias ytv-best="youtube-dl -f bestvideo+bestaudio "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement