From f439ccd2ca51747f3a8ca6184e521c67c35e36fa Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Sun, 22 Jun 2014 07:53:20 -0300 Subject: [PATCH] pinpoint support --- configs/vimrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configs/vimrc b/configs/vimrc index 3c239b8..f94e317 100644 --- a/configs/vimrc +++ b/configs/vimrc @@ -133,6 +133,10 @@ if has("autocmd") " JavaScript (who though those were "good" defaults?) au FileType javascript setlocal expandtab tabstop=2 sw=2 sts=2 textwidth=0 + + " Pinpoint (presentation format) + au BufNewFile,BufRead *.pin set filetype=pinpoint + au FileType pinpoint setlocal colorcolumn=79 textwidth=78 else set autoindent " always set autoindenting on endif " has("autocmd") @@ -251,6 +255,7 @@ color mustang " looks awesome on gvim, looks alright in vim if you have 256 co " Improved syntax files Bundle 'Glench/Vim-Jinja2-Syntax' +Bundle 'fmoralesc/vim-pinpoint' " Identation guidelines " Bundle 'nathanaelkane/vim-indent-guides'