neoconfig/UltiSnips/python.snippets
2024-07-30 22:59:49 +02:00

12 lines
169 B
Plaintext

snippet main "for python scripts"
#!`which python3`
if __name__ == "__main__":
$0
endsnippet
snippet #python "Set python interpreter"
#!`which python3`
$0
endsnippet