From 42cb4145cf5d1c755333d91b452957d439fa0490 Mon Sep 17 00:00:00 2001 From: Alyxia Sother Date: Fri, 19 May 2023 11:35:00 +0200 Subject: [PATCH] [nvim] If enabled, build coc-cl from source --- 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 87965af..e35cf19 100644 --- a/nvim/dotfiles/plugins-list.vim +++ b/nvim/dotfiles/plugins-list.vim @@ -46,6 +46,12 @@ let s:plug = funcref('dotfiles#plugman#register') " }}} " }}} +" coc {{{ + if g:dotfiles_build_coc_from_source + call s:plug('https://github.com/UltiRequiem/coc-cl', { 'do': 'yarn install --frozen-lockfile && yarn build' }) + endif +" }}} + " Misc {{{ if has('nvim') call s:plug('andweeb/presence.nvim')