summaryrefslogtreecommitdiffstats
path: root/init-python
diff options
context:
space:
mode:
authorJan Pokorný <jpokorny@redhat.com>2012-02-03 01:30:01 +0100
committerJan Pokorný <jpokorny@redhat.com>2012-02-03 01:30:01 +0100
commitfc2d9a48e9a5504f0ae4356278aa854cf2def1b1 (patch)
tree096a1a2479956be54e3859c553b93aade1dd41db /init-python
parent1efc8a2e2f475c9cb4d353d02177ff6fd335b4a5 (diff)
downloadvim4projects-fc2d9a48e9a5504f0ae4356278aa854cf2def1b1.tar.gz
vim4projects-fc2d9a48e9a5504f0ae4356278aa854cf2def1b1.tar.xz
vim4projects-fc2d9a48e9a5504f0ae4356278aa854cf2def1b1.zip
init: modular approach
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
Diffstat (limited to 'init-python')
-rw-r--r--init-python10
1 files changed, 10 insertions, 0 deletions
diff --git a/init-python b/init-python
new file mode 100644
index 0000000..b82705f
--- /dev/null
+++ b/init-python
@@ -0,0 +1,10 @@
+# vim plugins for Python projects
+CHOICES="$CHOICES|python"
+
+python () {
+ announce "--- python ---"
+ # Python-mode:
+ # integrates pylint, rope, pydoc, pyflakes
+ # + extra highlighting, whitespace removal ...
+ do_git_submodule $1 "git-python-mode"
+}