aboutsummaryrefslogtreecommitdiff
path: root/.vim/plugins.vim
diff options
context:
space:
mode:
Diffstat (limited to '.vim/plugins.vim')
-rw-r--r--.vim/plugins.vim24
1 files changed, 24 insertions, 0 deletions
diff --git a/.vim/plugins.vim b/.vim/plugins.vim
new file mode 100644
index 0000000..9027b4f
--- /dev/null
+++ b/.vim/plugins.vim
@@ -0,0 +1,24 @@
+" vim-blade
+au BufNewFile,BufRead *.blade.php set filetype=blade
+
+" git-gutter
+let g:gitgutter_max_signs = 100
+
+" additional syntastic checkers
+let g:syntastic_enable_perl_checker = 1
+let g:syntastic_perl_checkers = ["perl", "perlcritic"]
+
+" set options for syntastic checkers
+let g:syntastic_perl_perlcritic_args = "--brutal"
+
+" enable CamelCaseMotion
+call camelcasemotion#CreateMotionMappings('<silent>')
+
+" Enable unicode abbreviations for prettier Perl 6 code
+let perl6_unicode_abbrevs = 1
+
+" UltiSnips
+let g:snips_author = "Patrick Spek <p.spek@tyil.work>"
+
+" PDV
+let g:pdv_template_dir = $HOME ."/.vim/snippets/php/doc"