Added Pandoc and airline

This commit is contained in:
Andrea Mistrali 2015-02-11 13:04:46 +00:00
parent 4686cb83e5
commit 3721617be4
1 changed files with 14 additions and 1 deletions

View File

@ -31,10 +31,13 @@ Plugin 'vcscommand.vim'
Plugin 'TextFormat' Plugin 'TextFormat'
Plugin 'jsbeautify' Plugin 'jsbeautify'
Plugin 'aperezdc/vim-template.git' Plugin 'aperezdc/vim-template.git'
Plugin 'RecentFiles'
Plugin 'scratch.vim' Plugin 'scratch.vim'
Plugin 'vim-pandoc/vim-pandoc'
Plugin 'vim-pandoc/vim-pandoc-syntax'
Plugin 'bling/vim-airline'
call vundle#end() " required call vundle#end() " required
filetype plugin indent on " required filetype plugin indent on " required
" Let's go to 256 colors " Let's go to 256 colors
@ -174,6 +177,16 @@ let NERDCreateDefaultMappings=1
" GetLastestScript " GetLastestScript
" """""""""""""" " """"""""""""""
" """"""""""""""
" Pandoc
" """"""""""""""
let g:pandoc#command#custom_open = "MyPandocOpen"
function! MyPandocOpen(file)
return "open ". a:file
endfunction
" """"""""""" " """""""""""
" Keymappings " Keymappings
" """"""""""" " """""""""""