diff options
| author | Ruben Beltran del Rio <jj@r.bdr.sh> | 2025-11-05 23:07:20 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <jj@r.bdr.sh> | 2025-11-21 13:17:56 +0100 |
| commit | 61d055d1281f638130fea59e5d6c2676136bc87e (patch) | |
| tree | 4a901dc4ae980dd2861dd49ea37c0c4a5772d1b3 /config/nvim/lua | |
| parent | 2b09251962f4b80eeee1c6e11bde8d29536915e6 (diff) | |
Update plan and vim configs
Diffstat (limited to 'config/nvim/lua')
| -rw-r--r-- | config/nvim/lua/plugins.lua | 18 |
1 files changed, 15 insertions, 3 deletions
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 = {}, |