python.vim: simple settings
[cmccabe-etc] / .vim / indent / python.vim
diff --git a/.vim/indent/python.vim b/.vim/indent/python.vim
new file mode 100644 (file)
index 0000000..b9b42d7
--- /dev/null
@@ -0,0 +1,13 @@
+" Python indent file
+
+" Only load this indent file when no other was loaded.
+if exists("b:did_indent")
+    finish
+endif
+let b:did_indent = 1
+
+setlocal expandtab
+setlocal sw=4
+setlocal ts=4
+setlocal tw=79
+setlocal ai