Add a haxe plugin and ctags explorer plugin to vim

This commit is contained in:
Michael Campagnaro 2017-08-10 11:48:12 -04:00
parent 318ccdb25c
commit 30bb9e7764

9
vimrc
View File

@ -65,6 +65,7 @@ Plug 'junegunn/goyo.vim' " Distraction-free mode with centered buffer
" Automatically discover and 'properly' update ctags files on save " Automatically discover and 'properly' update ctags files on save
Plug 'craigemery/vim-autotag' Plug 'craigemery/vim-autotag'
Plug 'majutsushi/tagbar'
Plug 'jeetsukumaran/vim-filesearch' Plug 'jeetsukumaran/vim-filesearch'
Plug 'rking/ag.vim' Plug 'rking/ag.vim'
@ -148,6 +149,9 @@ Plug 'tpope/vim-markdown'
" C++ " C++
Plug 'bfrg/vim-cpp-enhanced-highlight' Plug 'bfrg/vim-cpp-enhanced-highlight'
" Haxe
Plug 'jdonaldson/vaxe'
call plug#end() call plug#end()
filetype plugin indent on filetype plugin indent on
@ -481,6 +485,11 @@ let g:localvimrc_sandbox = 0
let g:localvimrc_ask = 0 let g:localvimrc_ask = 0
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" TAGBAR
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
noremap <F11> :TagbarToggle<cr>
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" SYNTASTIC " SYNTASTIC
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""