forked from Keyitdev/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update: Added more fonts, updated readme, small changes in configs.
- Loading branch information
Showing
27 changed files
with
578 additions
and
153 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,53 @@ ZSH_THEME="bira" | |
|
||
plugins=(git) | ||
|
||
source $ZSH/oh-my-zsh.sh | ||
source $ZSH/oh-my-zsh.sh | ||
|
||
# pacman | ||
alias pacrem="sudo pacman -Rn" | ||
alias pacrema="sudo pacman -Rns" | ||
alias pacupd="sudo pacman -Syyy" | ||
alias pacupg="sudo pacman -Syu" | ||
alias paccl="sudo pacman -Rns $(pacman -Qtdq)" | ||
|
||
alias yayrem="yay -Rn" | ||
alias yayrema="yay -Rns" | ||
alias yayupd="yay -Syyy" | ||
alias yayupg="yay -Syu" | ||
alias yaycl="yay -Rns $(yay -Qtdq)" | ||
|
||
# git | ||
alias g="git" | ||
alias gad="git add --all" | ||
alias gcm="git commit -m" | ||
alias gcms="git commit -S -m" | ||
alias gph="git push" | ||
alias gpl="git pull" | ||
alias gcl="git clone" | ||
alias gin="git init" | ||
|
||
alias gst="git status" | ||
alias glg="git log -n 5" | ||
alias glgr="git reflog" | ||
alias gdf="git diff" | ||
|
||
alias gbr="git branch" | ||
alias gsw="git switch" | ||
alias gch="git checkout" | ||
alias gra="git remote add origin [email protected]:" | ||
alias grs="git remote set-url origin [email protected]:" | ||
|
||
# other | ||
alias nv="nvim" | ||
alias la="ls -alF" | ||
alias h="history|grep" | ||
alias c="clear" # I know about ctrl l etc. | ||
alias logout="killall -KILL -u key_user" | ||
alias files="nautilus" | ||
alias helpme="cat ~/.zshrc | less" | ||
|
||
# cd | ||
alias ..="cd .." | ||
alias ....="cd ../.." | ||
alias ......="cd ../../.." | ||
alias ........="cd ../../../.." |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[Settings] | ||
gtk-icon-theme-name = Papirus | ||
gtk-theme-name = Dracula | ||
gtk-font-name = Roboto mono 12 | ||
gtk-font-name = Open sans 12 | ||
gtk-application-prefer-dark-theme = true |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.