33 lines
717 B
Plaintext
33 lines
717 B
Plaintext
#Variables
|
|
|
|
#----------
|
|
# Commands that will be used as aliases for zsh and bash
|
|
#----------
|
|
|
|
# Common commands
|
|
#-----
|
|
alias py="python3"
|
|
alias mcrow="echo 'you better try to use nvim you little shit! :3'"
|
|
alias vi="nvim"
|
|
alias srcals="source $HOME/NixOS/other/aliases && echo 'Sourced Aliases ... successful!'"
|
|
alias please="sudo"
|
|
alias se="sudoedit"
|
|
alias tt="gtypist ktde.typ"
|
|
|
|
alias neofetch="fastfetch"
|
|
|
|
|
|
|
|
# Nix Specific commands
|
|
#-----
|
|
alias nix-gc="sudo nix-store --gc"
|
|
alias nix-clean="sudo nix-store --gc"
|
|
alias nix-clear="sudo nix-store --gc"
|
|
|
|
#KDE Plasma Specific
|
|
#-----
|
|
alias kde-theme-apply="source $HOME/NixOS/plasma/konsave.sh"
|
|
|
|
#LaTeX Commands
|
|
alias makepdf="makeglossaries main && pdflatex main.tex"
|