aboutsummaryrefslogtreecommitdiff
path: root/config/nvim/lua
diff options
context:
space:
mode:
Diffstat (limited to 'config/nvim/lua')
-rw-r--r--config/nvim/lua/plugins.lua18
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 = {},