Addd snippets for vim, update i3 hotkeys

This commit is contained in:
Smirnov Olexandr 2021-01-12 16:47:13 +02:00
parent f7c0cef79f
commit 25b4e80c8d
10 changed files with 195 additions and 47 deletions

View file

@ -0,0 +1,10 @@
priority -50
snippet #! "Shebang"
#!/usr/bin/env python
endsnippet
snippet ifmain "If __main...."
if __name__ == "__main__":
${1:code}
endsnippet