Compare commits

..

3 commits

Author SHA1 Message Date
Alyxia Sother
75dbd2e0fb
[nvim] Add a coc language config for Go 2021-11-11 09:55:25 +01:00
Alyxia Sother
0ac6542bb5
[nvim] Add the Laravel plugins 2021-11-11 09:53:18 +01:00
Alyxia Sother
c73c298d26
[nvim] Moved copilot to nvim 0.6.0 2021-11-11 09:50:32 +01:00
2 changed files with 10 additions and 0 deletions

View file

@ -0,0 +1,2 @@
call extend(g:dotfiles_coc_extensions, {'coc-go': 1})
call extend(g:dotfiles_coc_filetypes, {'go': 1})

View file

@ -16,11 +16,19 @@ let s:plug = funcref('dotfiles#plugman#register')
call s:plug('alaviss/nim.nvim')
call s:plug('stevearc/vim-arduino')
call s:plug('xiyaowong/coc-nvim-lua')
call s:plug('noahfrederick/vim-laravel') " dependencies {{{
call s:plug('noahfrederick/vim-composer')
call s:plug('tpope/vim-projectionist')
call s:plug('tpope/vim-dispatch')
" }}}
" }}}
" Misc {{{
if has('nvim-0.5.0')
call s:plug('andweeb/presence.nvim')
endif
if has('nvim-0.6.0')
call s:plug('github/copilot.vim')
endif
call s:plug('wakatime/vim-wakatime')