Skip to content
Snippets Groups Projects
Commit e581cbdf authored by Antoine Marteau's avatar Antoine Marteau
Browse files

vista : explorateur structure code avec lsp

parent 1f5d9e3d
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ Plug 'ryanoasis/vim-devicons' " various symbols (linux, rust, python, ...)
Plug 'gruvbox-community/gruvbox' " color scheme
Plug 'junegunn/fzf', {'do': { -> fzf#install() } } " autocompletion recherches
Plug 'junegunn/fzf.vim'
Plug 'junegunn/fzf.vim'
Plug 'tpope/vim-fugitive' "git integrations
Plug 'stsewd/fzf-checkout.vim' "gestion branches et tags avec fzf
......@@ -42,6 +42,9 @@ Plug 'neoclide/coc.nvim', {'branch': 'release'} " completion
" c++/C config
Plug 'jackguo380/vim-lsp-cxx-highlight' "c++ highlighting
" explore source file structure
Plug 'liuchengxu/vista.vim'
Plug 'ThePrimeagen/vim-be-good' " vim tutorial game by The Primeagen
call plug#end()
......@@ -85,7 +88,7 @@ au BufWinLeave * call clearmatches()
autocmd BufWrite * %s/\s\+$//e
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"""""""""" COC config
"""""""""" COC config
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Always show the signcolumn, otherwise it would shift the text each time
......@@ -257,3 +260,9 @@ nnoremap <leader>gl :diffget //3<CR>
" faire apparaitre le fenettre fuzzy au milieu de l'ecran
let g:fzf_layout = { 'window': { 'width': 0.8, 'height': 0.8 } }
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"""""""""" Vista : code structure explorer with lsp support
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
nnoremap <silent> <leader>vv :Vista!!<CR>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment