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