Files
neoconfig/UltiSnips/python.snippets
T

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