plugin vim-project-tags added

This commit is contained in:
ManjaroOne666 2017-09-18 21:20:14 +01:00
parent 3c6510f90d
commit e74b89a1c4
1 changed files with 31 additions and 20 deletions

51
vimrc
View File

@ -54,7 +54,13 @@ Plugin 'tpope/vim-surround'
Plugin 'mbbill/undotree'
" gutentag
Plugin 'ludovicchabant/vim-gutentags'
"Plugin 'ludovicchabant/vim-gutentags'
" vim-project-tags
"dependancy needed:
"https://github.com/still-dreaming-1/vim-project-tags
Plugin 'still-dreaming-1/vim-elhiv'
Plugin 'still-dreaming-1/vim-project-tags'
" Ctrlp
Plugin 'ctrlpvim/ctrlp.vim'
@ -124,6 +130,8 @@ filetype plugin indent on " required
colorscheme customred256
" tags file set tags=tags;/
" ignore case when searching
set ignorecase
" unless search contains uppercase
@ -144,16 +152,13 @@ let mapleader = "\<space>"
" jk acts as escape in insert,visual/select modes
inoremap jk <esc>
inoremap <esc> <nop>
vnoremap jk <esc>
vnoremap <esc> <nop>
"inoremap <esc> <nop>
" disable arrow keys
noremap <Up> <nop>
noremap <Down> <nop>
noremap <Left> <nop>
noremap <Right> <nop>
"noremap <Up> <nop>
"noremap <Down> <nop>
"noremap <Left> <nop>
"noremap <Right> <nop>
@ -295,6 +300,9 @@ nnoremap <leader>p :echom SyntaxItem()<CR>
" plugins stuff
" vim-project-tags
source ~/.vim/bundle/vim-elhiv/elhiv.vim
" MUcomplete
set completeopt+=menuone
let g:mucomplete#enable_auto_at_startup = 1
@ -333,8 +341,8 @@ endfunction
"nmap <silent> <C-j> <Plug>(ale_next_wrap)
"wordpress.vim
let g:wordpress_vim_wordpress_path = "~/Projects/Wordpress/WordpressSource"
let g:wordpress_vim_ctags_path = "/usr/bin/ctags"
"let g:wordpress_vim_wordpress_path = "~/Projects/Wordpress/WordpressSource"
"let g:wordpress_vim_ctags_path = "/usr/bin/ctags"
" syntastic
@ -372,15 +380,18 @@ nnoremap <leader>o :BufExplorer<CR>
" undotree
nnoremap <leader>ut :UndotreeToggle<cr>
" let g:tagbar_type_css = {
" \ 'ctagstype' : 'css',
" \ 'kinds' : [
" \ 'c:classes',
" \ 'i:ids',
" \ 't:tags',
" \ 'm:medias'
" \ ]
" \}
let g:tagbar_type_css = {
\ 'ctagstype' : 'css',
\ 'kinds' : [
\ 'c:classes',
\ 'i:ids',
\ 't:tags',
\ 'm:medias'
\ ]
\}
let g:tagbar_type_scss = {
\ 'ctagstype' : 'scss',