From c73c298d26a4f2405fde1b4706d5264fadb92a25 Mon Sep 17 00:00:00 2001 From: Alyxia Sother Date: Thu, 11 Nov 2021 09:50:32 +0100 Subject: [PATCH 1/3] [nvim] Moved copilot to nvim 0.6.0 --- nvim/dotfiles/plugins-list.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nvim/dotfiles/plugins-list.vim b/nvim/dotfiles/plugins-list.vim index d5f23b5..0291880 100644 --- a/nvim/dotfiles/plugins-list.vim +++ b/nvim/dotfiles/plugins-list.vim @@ -21,6 +21,8 @@ let s:plug = funcref('dotfiles#plugman#register') " 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') From 0ac6542bb58039f9d2a658b2f9a9d6c9f23a70ae Mon Sep 17 00:00:00 2001 From: Alyxia Sother Date: Thu, 11 Nov 2021 09:53:18 +0100 Subject: [PATCH 2/3] [nvim] Add the Laravel plugins --- nvim/dotfiles/plugins-list.vim | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nvim/dotfiles/plugins-list.vim b/nvim/dotfiles/plugins-list.vim index 0291880..3507e08 100644 --- a/nvim/dotfiles/plugins-list.vim +++ b/nvim/dotfiles/plugins-list.vim @@ -16,6 +16,12 @@ 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 {{{ From 75dbd2e0fb7cf122c8df6c40affa188bbddaedc8 Mon Sep 17 00:00:00 2001 From: Alyxia Sother Date: Thu, 11 Nov 2021 09:55:25 +0100 Subject: [PATCH 3/3] [nvim] Add a coc language config for Go --- nvim/coc-languages/go.vim | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 nvim/coc-languages/go.vim diff --git a/nvim/coc-languages/go.vim b/nvim/coc-languages/go.vim new file mode 100644 index 0000000..d838559 --- /dev/null +++ b/nvim/coc-languages/go.vim @@ -0,0 +1,2 @@ +call extend(g:dotfiles_coc_extensions, {'coc-go': 1}) +call extend(g:dotfiles_coc_filetypes, {'go': 1})