Code Monkey home page Code Monkey logo

Comments (3)

VonHeikemen avatar VonHeikemen commented on June 12, 2024 1

Make sure you are using the branch v3.x of lsp-zero.

from lsp-zero.nvim.

VonHeikemen avatar VonHeikemen commented on June 12, 2024

Is it 0 to LSP tutorial? That video uses an old version of lsp-zero. Make sure you are using lsp-zero version 3 (use the branch v3.x). You can use the command :help lsp-zero-version to check which version you are using.

If a language server is not available in mason, you have to install it manually. After that, if the language server is supported by lspconfig then just call the setup function for it. The list of supported servers is here: server_configurations.md.

Since sourcekit is already supported by lspconfig this should work.

local lsp_zero = require('lsp-zero')

lsp_zero.on_attach(function(client, bufnr)
  lsp_zero.default_keymaps({buffer = bufnr})
end)

require('lspconfig').sourcekit.setup({})

If the language server is not supported by lspconfig you can still add a configuration to make it work. There is a section in the documentation that describes how to do it: Custom servers.

from lsp-zero.nvim.

Santiago-Torres14 avatar Santiago-Torres14 commented on June 12, 2024

That was helpful, thanks!

Now I'm presenting this issue:

Error detected while processing /Users/user-name/.config/nvim/after/plugin/lsp.lua:
E5113: Error while calling lua chunk: /Users/user-name/.config/nvim/after/plugin/lsp.lua:86: attempt to call field 'cmp_format' (a nil value)

It looks like when I try to set up cmp with the formatting value, lsp-zero.cmp_format() is giving a nil value.

from lsp-zero.nvim.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.