File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -150,6 +150,11 @@ augroup filetype_ruby
150
150
151
151
augroup END
152
152
153
+ augroup filetype_python
154
+ autocmd !
155
+ autocmd BufWritePost *.py call Flake8 ()
156
+ augroup END
157
+
153
158
augroup filetype_js
154
159
autocmd !
155
160
autocmd BufNewFile ,BufRead *.hbs set filetype = html
Original file line number Diff line number Diff line change
1
+ snippet prv
2
+ print("${1: label } : {}".format($1 ))
Original file line number Diff line number Diff line change @@ -40,7 +40,10 @@ git_bundles = [
40
40
"git://github.com/jceb/vim-orgmode.git" ,
41
41
42
42
"git://github.com/mattn/emmet-vim.git" ,
43
- "git://github.com/lambdatoast/elm.vim.git"
43
+ "git://github.com/lambdatoast/elm.vim.git" ,
44
+ "git://github.com/elixir-lang/vim-elixir.git" ,
45
+ "git://github.com/ElmCast/elm-vim.git" ,
46
+ "git://github.com/nvie/vim-flake8.git"
44
47
]
45
48
46
49
hg_bundles = [
@@ -86,6 +89,6 @@ if system("which", "hg")
86
89
end
87
90
88
91
puts "####################"
89
- puts "# Don't forget to build extensions (e.g. Command-T) if you haven't already) "
92
+ puts "# Don't forget to build extensions (e.g. Command-T) or install packages (e.g. `sudo pip install flake8`) if you haven't already. "
90
93
puts "####################"
91
94
You can’t perform that action at this time.
0 commit comments