1
0
mirror of https://github.com/akelge/zsh synced 2025-08-16 14:48:39 +00:00

Moved to Vundle

Adopted vim-templates plugin, instead of homegrown skeleton
This commit is contained in:
2015-01-09 15:02:11 +00:00
parent 4671504dd5
commit 7e6736fbef
129 changed files with 29294 additions and 2 deletions

View File

@ -0,0 +1,26 @@
#!/usr/bin/env python
#-*- coding: utf-8 -*-
"""
Copyright by @@LONGNAME@@ <@@EMAIL@@>
First version: @@crdate@@
Synopsis: @@DESCR@@
$Id$
"""
__version__ ='0.1'
__author__ ='@@LONGNAME@@ <@@EMAIL@@>'
def main():
pass
# If we have been called as 'python <script>' let's call main function
if __name__ == "__main__":
main()
# vim: set ts=4 sw=4 tw=79 ft=python :