From 61d055d1281f638130fea59e5d6c2676136bc87e Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Wed, 5 Nov 2025 23:07:20 +0100 Subject: Update plan and vim configs --- config/nvim/lua/plugins.lua | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'config/nvim/lua/plugins.lua') diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua index ce637e9..9695d44 100644 --- a/config/nvim/lua/plugins.lua +++ b/config/nvim/lua/plugins.lua @@ -68,7 +68,6 @@ require('lazy').setup({ 'mxsdev/nvim-dap-vscode-js', -- Editing - 'ms-jpq/coq_nvim', 'RRethy/nvim-treesitter-endwise', { 'windwp/nvim-autopairs', @@ -86,8 +85,21 @@ require('lazy').setup({ 'https://git.sr.ht/~rbdr/tree-sitter-api-notation', -- LSP - 'neovim/nvim-lspconfig', - { + { + 'neovim/nvim-lspconfig', + lazy = false, + dependencies = { + { 'ms-jpq/coq_nvim', branch = 'coq' }, + { 'ms-jpq/coq.artifacts', branch = 'artifacts' }, + { 'ms-jpq/coq.thirdparty', branch = '3p' } + }, + init = function() + vim.g.coq_settings = { + auto_start = 'shut-up', + } + end, + }, + { "folke/lazydev.nvim", ft = "lua", opts = {}, -- cgit