Issue with wiki page "configuration"
Closed this issue · 2 comments
DrKJeff16 commented
Description
For Neovim v0.11.0 or higher, the LSP is activated differently:
vim.lsp.config('lua_ls', {
-- Command and arguments to start the server.
cmd = { 'lua-language-server' },
-- Filetypes to automatically attach to.
filetypes = { 'lua' },
-- Sets the "workspace" to the directory where any of these files is found.
-- Files that share a root directory will reuse the LSP server connection.
-- Nested lists indicate equal priority, see |vim.lsp.Config|.
root_markers = { '.luarc.json', '.luarc.jsonc', '.git' },
-- Specific settings to send to the server. The schema is server-defined.
-- Example: https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json
settings = {
Lua = {
runtime = {
version = 'LuaJIT',
}
}
}
})
vim.lsp.enable('lua_ls')The method using nvim-lspconfig only counts for
nvim versions lower than v0.11.0.
carsakiller commented
I have opened #58 to update the installation and configuration instructions for Neovim. I have never used Neovim and am not familiar with how things work over there, though.
Could you please take a look at it and let me know if things are looking correct?
DrKJeff16 commented
@carsakiller Thanks for your time. Left my review.