final configuration for coc.nvim is updated

This commit is contained in:
2026-01-24 15:05:01 +00:00
parent 6a1e28ce76
commit 7d3a2ebe5d

View File

@@ -337,6 +337,17 @@ function setUpPluginDir {
return $RETURN_SUCCESS return $RETURN_SUCCESS
} }
# Final configuration for coc.nvim
function setUpCOC {
cd $HOME/.vim/pack/default/start
npm ci
checkStatus 0 "COC plugin is not fully configured!!"
return $RETURN_SUCCESS
}
function setUpYCM { function setUpYCM {
@@ -600,6 +611,11 @@ do
logStatus "Setting up $plugins: " $status logStatus "Setting up $plugins: " $status
done done
# Setting up coc.nvim plugin
setUpCOC
status=$?
logStatus "Configurating coc.nvim : " $status
if [ "$INSTALL_YCM" = "YES" ] ; then if [ "$INSTALL_YCM" = "YES" ] ; then
checkVimVersion checkVimVersion
status=$? status=$?