Update alacritty, kitty, bspwm, i3wm, vim,tmux configs & sctipts

This commit is contained in:
Smirnov Olexandr 2021-01-24 23:08:44 +02:00
parent 246dc34d13
commit c7da10d076
22 changed files with 256 additions and 282 deletions

View file

@ -1,9 +1,9 @@
snippet !sh "SH Shebang"
snippet ! "SH Shebang"
#!/bin/sh
${1}
endsnippet
snippet !bash "BASH Shebang"
snippet #! "BASH Shebang"
#!/bin/bash
${1}
endsnippet
@ -27,8 +27,8 @@ done
endsnippet
snippet case "Case"
case "${1:$variable}" in
"${2}") ${3} ;;
case "${1}" in
${2}
esac
endsnippet