Dotfiles for my tiling window manager + terminal workflow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

346 lines
8.5 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. # system {{{ #
  2. HISTFILE=~/.histfile
  3. HISTSIZE=10000
  4. SAVEHIST=10000
  5. setopt appendhistory autocd extendedglob nomatch notify
  6. # vim mode {{{ #
  7. bindkey -v
  8. function zle-line-init zle-keymap-select {
  9. VIM_PROMPT="%{$fg_bold[yellow]%} [% NORMAL]% %{$reset_color%}"
  10. RPS1="${${KEYMAP/vicmd/$VIM_PROMPT}/(main|viins)/} $EPS1"
  11. zle reset-prompt
  12. }
  13. zle -N zle-line-init
  14. zle -N zle-keymap-select
  15. export KEYTIMEOUT=1
  16. # }}} vim mode #
  17. # command line related {{{ #
  18. # search history
  19. bindkey '\e[A' history-beginning-search-backward
  20. bindkey '\e[B' history-beginning-search-forward
  21. alias cs='printf "\033c"'
  22. alias hst="history"
  23. alias nf="cs && neofetch | lolcat"
  24. alias rur="xrdb ~/.Xresources"
  25. # list file sizes in megabytes with depth 1
  26. alias dum="sudo du -d 1 -B M"
  27. alias grbm="sudo grub-mkconfig -o /boot/grub/grub.cfg"
  28. function cld() { colordiff -y --suppress-common-lines $1 $2 ; }
  29. alias grep='grep --color=auto'
  30. # for finding files by name
  31. function rf() { find . -name '$1' ; }
  32. # find text inside files
  33. function rg() { grep -nr $1 * ; }
  34. function cpd() { cp -avr $1 $2 ; }
  35. # extract tar archive
  36. function utar() { tar -xzvf $1 && rm $1; }
  37. function rzip() { unzip $1 && rm $1; }
  38. function lzip() { unzip -l $1 | less; }
  39. alias mkpk="makepkg -sri"
  40. alias mkex="chmod 777"
  41. alias udm="udisksctl mount -b"
  42. alias udu="udisksctl unmount -b"
  43. alias mkex="chmod 777"
  44. alias ctle="systemctl enable"
  45. alias ctls="systemctl start"
  46. # }}} command line related #
  47. # directory-related {{{ #
  48. alias l='ls -a'
  49. alias ll='ls -alFh'
  50. function f() { cd $1 && pwd > ~/.last_dir && ls -a ; }
  51. # restore last dir
  52. if [ -f ~/.last_dir ]
  53. then cd `cat ~/.last_dir`
  54. fi
  55. alias rmr="rm -rf"
  56. alias "f."="f .."
  57. alias "f.."="f ..."
  58. function mvd() { mv $1 ~/Downloads ; }
  59. alias lhd="sudo fdisk -l"
  60. alias ds="df -h | grep sd"
  61. alias nbu="f /run/media/kevin/pc-backup/backups/nzxt && ll | grep gz"
  62. # }}} directory-related #
  63. # power options {{{ #
  64. alias s="systemctl suspend"
  65. alias sd="sudo shutdown 0"
  66. alias reb="sudo shutdown -r 0"
  67. alias lo="i3-msg exit"
  68. # }}} power options #
  69. # rotate monitor {{{ #
  70. function rt() {
  71. output="HDMI-0"
  72. if [ "$1" = "s" ]
  73. # if [ "${1:0:1}" = "s" ]
  74. then
  75. output="DVI-I-1"
  76. fi
  77. dir="normal"
  78. if [ "$2" = "r" ]
  79. # if [ "${1:1:2}" = "r" ]
  80. then
  81. dir="right"
  82. fi
  83. if [ "$2" = "l" ]
  84. then
  85. dir="left"
  86. fi
  87. # echo "xrandr --output \"$output\" --rotate \"$dir\""
  88. xrandr --output "$output" --rotate "$dir"
  89. }
  90. # }}} rotate monitor #
  91. # sound
  92. alias vlm="alsamixer -c 0"
  93. alias vlh="alsamixer -c 2"
  94. # apt
  95. # function apti() { sudo apt install $1 ; }
  96. # function aptr() { sudo apt remove $1 ; }
  97. # alias aptu="sudo apt upgrade"
  98. alias pc="sudo pacman -S"
  99. alias pcr="sudo pacman -Rs"
  100. # }}} system #
  101. # config files {{{ #
  102. function gz() { grep $1 ~/linux-config/aliases/zsh_aliases ; }
  103. alias lca="f ~/linux-config/aliases"
  104. source ~/.shortcuts
  105. # i3
  106. alias i3b="f ~/i3blocks"
  107. alias pipes="pipes.sh -t 3"
  108. # UltiSnips {{{ #
  109. urnp_dir="~/.vim/plugged/vim-snippets/UltiSnips"
  110. function vsnp() { ni ~/.vim/plugged/vim-snippets/UltiSnips/"$1".snippets ; }
  111. # }}} #
  112. # }}} config files #
  113. # applications {{{ #
  114. silent="> /dev/null 2>&1& "
  115. alias h="htop"
  116. alias r="ranger"
  117. alias mr="man ranger"
  118. # zathura
  119. function za() { nohup zathura $1 > /dev/null 2>&1& ; }
  120. function chr() { google-chrome $1 ; }
  121. alias ni="nvim"
  122. alias sni="sudo nvim"
  123. function mrk() { pandoc -o ${1%.*}.html $1 ; }
  124. # auto-clicker {{{ #
  125. function auc() { xdotool click --repeat 1000000 --delay $1 1 ; }
  126. # alias auc1="xdotool click --repeat 1000000 --delay 1 1"
  127. # alias auc3="xdotool click --repeat 1000000 --delay 300 1"
  128. # alias auc5="xdotool click --repeat 1000000 --delay 500 1"
  129. # alias kauc="pkill -f xdotool"
  130. # }}} auto-clicker #
  131. # alias rsl="java -jar ~/Downloads/RuneLite.jar"
  132. alias swex="sudo nohup ~/Downloads/swex.appimage $silent"
  133. alias vbn="cvlc --loop --alsa-gain 1 ~/Music/brown-noise.mp3"
  134. alias rmsw="rm .sw*"
  135. function rs(){ redshift -P -O $(echo "scale=2;$1*1000" | bc) ; }
  136. alias rx="redshift -x"
  137. # python related {{{ #
  138. function grpy() { grep $1 *.py ; }
  139. alias p3="python3"
  140. alias py="python"
  141. # }}} python related #
  142. # }}} applications #
  143. # git {{{ #
  144. # aliases {{{
  145. alias gstr="git config credential.helper store"
  146. # add {{{ #
  147. alias ga="git add -A . && gs"
  148. alias gac="git add -A . && git commit"
  149. # }}} add #
  150. # diff/log {{{ #
  151. alias gd="git diff -w"
  152. alias gdc="git diff --cached"
  153. alias gds="git diff --stat"
  154. alias gdt="git difftool --tool=vimdiff"
  155. alias gl="git log"
  156. alias gsl="git shortlog"
  157. # }}} diff/log #
  158. # update {{{ #
  159. alias gs="git status -u"
  160. alias gchom="git checkout master"
  161. alias gchnw="git checkout -b wip"
  162. alias gchw="git checkout wip"
  163. alias gheadm1="git reset --hard HEAD~1"
  164. alias gls="git ls-tree -r HEAD --name-only"
  165. # push {{{ #
  166. alias egc="nvim -c \"set syn=gitcommit\" -c \"set tw=72\" commit-msg.txt"
  167. alias gst="git stash"
  168. alias gstp="git stash pop"
  169. alias gc="git commit"
  170. alias gcam="ga && git commit --amend --no-edit"
  171. alias gcamp="ga && git commit --amend --no-edit && gpsf"
  172. # todo: fix
  173. function gcm(){ echo git commit -m \""$1"\" ; }
  174. function psg() {
  175. git add .
  176. git commit -m '.'
  177. git push
  178. }
  179. alias gps="git push"
  180. alias gpsi="git push --set-upstream origin master"
  181. alias gpsf="git push --force"
  182. alias gclear="git stash clear"
  183. # }}} push #
  184. # pull {{{ #
  185. alias gpl="git pull --rebase"
  186. alias grbc="git rebase --continue"
  187. # }}} pull #
  188. # }}} update #
  189. # edit {{{ #
  190. alias vre="ni README.md"
  191. alias crm="mrk README.md"
  192. # }}} edit #
  193. # aliases }}}
  194. # functions {{{
  195. alias gcho="git checkout"
  196. alias gchon="git checkout -b"
  197. function gchof() { git checkout $1 $2 ; }
  198. alias gcln="git clone"
  199. alias gchp="git cherry-pick"
  200. alias gchpc="git cherry-pick --continue"
  201. # add multiple push repos
  202. function gremotes() {
  203. git remote set-url --add --push origin $1
  204. git remote set-url --add --push origin $2
  205. git remote -v
  206. }
  207. # gmrgr: merge repos {{{ #
  208. function gmrgr() {
  209. # 1 = remote name, 2 = remote path
  210. git remote add $1 $2
  211. git fetch $1
  212. # whichever branch you want to merge
  213. git merge --allow-unrelated-histories $1/master
  214. git remote remove $1
  215. }
  216. # }}} merge repos #
  217. # assume file unchanged
  218. alias gunc="git update-index --assume-unchanged"
  219. # delete branch locally and on server
  220. function grmb() { git push origin --delete $1 && git branch -D $1 ; }
  221. # functions }}}
  222. # }}} git #
  223. # coding projs {{{ #
  224. coding_dir="~/coding"
  225. alias cdn="$cd_coding_dir"
  226. alias gx="ni ~/Documents/csgo-config/autoexec.cfg"
  227. # trapbot {{{ #
  228. alias tb="$cd_coding_dir/trapbot"
  229. alias vtb="$cd_coding_dir/trapbot && ni scan_reddit.py"
  230. alias ptb="python scan_reddit.py"
  231. alias rtb="$cd_coding_dir/trapbot && python scan_reddit.py"
  232. # }}} trapbot #
  233. # spotify-lib-vis {{{ #
  234. spv_dir="$coding_dir""/spotify-lib-vis"
  235. alias svl="f $spv_dir/src/login"
  236. alias sva="f $spv_dir/src/api"
  237. alias svg="f $spv_dir/src/graphs"
  238. alias svscs="f $spv_dir/src/static/scss"
  239. alias svcss="f $spv_dir/src/spotifyvis/static/scss"
  240. # source ~/coding/spotify-lib-vis/src/api-keys.sh
  241. # source "$spv_dir""/src/api-keys.sh"
  242. function ssv() {
  243. source ../bin/activate
  244. python manage.py runserver
  245. }
  246. alias spvdb="psql -d spotifyvis -U django"
  247. function mig() {
  248. python manage.py makemigrations
  249. python manage.py migrate --run-syncdb
  250. ssv
  251. }
  252. alias cldb="python manage.py flush --no-input && ssv"
  253. alias djs="python manage.py shell"
  254. alias upip="pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U"
  255. alias ureq="pip freeze > requirements.txt"
  256. # scan history
  257. alias hlg="cat $spv_dir/src/api/management/commands/update-history.log | tail -n 1"
  258. alias crnl="grep \"(kevin) CMD\" /var/log/syslog | tail -n 1 && hlg"
  259. alias hs="$spv_dir/src/update-history.sh && hlg"
  260. # removes all but newest file
  261. # alias rmol="ls -t | tail -n +2 | xargs rm -- && l"
  262. # }}} spotify-lib-vis #
  263. # # Stardew Valley {{{
  264. # sdv_save_dir=~/Documents/sdv-save
  265. # alias sdv="f $sdv_save_dir"
  266. # alias smp="~/Downloads/sdv/smapi/install\ on\ Linux.sh"
  267. # # alias imc="sdv && source import-save.sh coop"
  268. # function ucf() { f ~/Documents/StardewMods/UncaughtFish ; }
  269. # function svmd() { f ~/.local/share/Steam/steamapps/common/Stardew\ Valley/Mods ; }
  270. # function svm() { mv $1 ~/.local/share/Steam/steamapps/common/Stardew\ Valley/Mods ; }
  271. # # }}}
  272. # }}} coding projs #
  273. # school {{{ #
  274. # 343
  275. alias ij="sudo ~/Downloads/idea/bin/idea.sh $silent"
  276. alias a2="f ~/Documents/school/343/a2"
  277. alias a2j="f ~/Documents/school/343/a2/java/src"
  278. alias q2="psql -U postgres -d 343-a2 -f q2-test.sql"
  279. alias q2o="psql -U postgres -d 343-a2 -f q2-test.sql -o q2.out"
  280. alias q2a="psql -U postgres -d 343-a2 -f q2.sql"
  281. alias q4="psql -U postgres -d 343-a2 -f q4-test.sql"
  282. alias q4a="psql -U postgres -d 343-a2 -f q4.sql"
  283. # }}} school #