lsp related changes

This commit is contained in:
nova 2024-01-30 20:54:44 +01:00
parent a97c33a024
commit c347de44e3
2 changed files with 7 additions and 4 deletions

View File

@ -1,5 +1,7 @@
local lsp = require "lspconfig"
local coq = require "coq" -- add this
local coq = require "coq"
require("mason").setup()
require("mason-lspconfig").setup()
lsp.clangd.setup(coq.lsp_ensure_capabilities({
on_attach = on_attach,

View File

@ -17,12 +17,13 @@ local plugins = {
'ms-jpq/coq_nvim',
branch = 'coq',
event = "InsertEnter",
init = function() vim.g.coq_settings = {
auto_start = 'shut-up',
init = function() vim.g.coq_settings = {
auto_start = 'shut-up',
["keymap.jump_to_mark"] = "<C-s>",
["display.ghost_text.enabled"] = false,
} end,
dependencies = {
{ "ms-jpq/coq.artifacts",
{ "ms-jpq/coq.artifacts",
branch = "artifacts",
event = "InsertEnter", },
{ "neovim/nvim-lspconfig" },