Skip to content

Commit a70a493

Browse files
committed
guten
1 parent c8571ac commit a70a493

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

config/plugin-config/ctags.vim

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,15 @@
88
" brew install universal-ctags
99

1010
set tags=~/.cache/tags/.tags;,.tags
11+
set statusline+=%{gutentags#statusline()}
1112

1213
let g:gutentags_cache_dir = expand('~/.cache/tags')
1314
let g:gutentags_ctags_extra_args = ['--fields=+ainKz']
1415
let g:gutentags_ctags_tagfile = '.tags'
1516
let g:gutentags_project_root = ['.root', '.svn', '.git', '.hg', '.project']
17+
18+
augroup MyGutentagsStatusLineRefresher
19+
autocmd!
20+
autocmd User GutentagsUpdating call lightline#update()
21+
autocmd User GutentagsUpdated call lightline#update()
22+
augroup END

config/plugins.vim

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,13 @@ Plug 'junegunn/fzf.vim'
4343

4444
"" IdIDE:
4545
Plug 'antoinemadec/coc-fzf'
46-
" Plug 'ludovicchabant/vim-gutentags', { 'for': 'python' }
46+
Plug 'ludovicchabant/vim-gutentags'
4747
Plug 'neoclide/coc.nvim', {'branch': 'release'}
48-
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
49-
Plug 'pappasam/coc-jedi', { 'do': 'yarn install --frozen-lockfile && yarn build', 'branch': 'main' }
50-
" Plug 'sheerun/vim-polyglot'
48+
Plug 'nvim-lua/plenary.nvim'
49+
Plug 'nvim-telescope/telescope.nvim'
50+
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate', 'branch' : '0.5-compat'}
51+
Plug 'nvim-treesitter/nvim-treesitter-textobjects', {'branch' : '0.5-compat'}
52+
Plug 'pappasam/coc-jedi', {'do': 'yarn install --frozen-lockfile && yarn build', 'branch': 'main'}
5153

5254
" TtTtTheme: PRETTY PRETTY PRETTY PRETTY PRETTY PRETTY
5355
Plug 'chriskempson/base16-vim', {'do': 'git clone https://github.com/chriskempson/base16-shell.git ~/.config/base16-shell'}

0 commit comments

Comments
 (0)