2023-07-17 17:18:14 +00:00
|
|
|
local lsp = require('lsp-zero').preset({})
|
|
|
|
|
|
|
|
lsp.on_attach(function(client, bufnr)
|
|
|
|
lsp.default_keymaps({buffer = bufnr})
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- Language servers
|
|
|
|
lsp.ensure_installed({
|
|
|
|
-- Replace these with whatever servers you want to install
|
|
|
|
'bashls',
|
2023-07-21 11:57:50 +00:00
|
|
|
'clangd',
|
2023-07-17 17:18:14 +00:00
|
|
|
'julials',
|
|
|
|
'lua_ls',
|
2023-07-21 07:58:44 +00:00
|
|
|
'ltex',
|
2023-07-17 17:18:14 +00:00
|
|
|
'pylsp',
|
|
|
|
'texlab',
|
|
|
|
'zls'
|
|
|
|
})
|
|
|
|
|
2023-07-21 08:46:34 +00:00
|
|
|
--[[
|
|
|
|
START LANGUAGE SERVERS CONFIG HERE!!!
|
|
|
|
]]--
|
|
|
|
|
2023-07-17 17:18:14 +00:00
|
|
|
-- (Optional) Configure lua language server for neovim
|
|
|
|
require('lspconfig').lua_ls.setup(lsp.nvim_lua_ls())
|
|
|
|
|
2023-07-21 08:46:34 +00:00
|
|
|
|
|
|
|
require('lspconfig').texlab.setup({})
|
|
|
|
|
|
|
|
require('lspconfig').ltex.setup({
|
|
|
|
settings = {
|
|
|
|
ltex = {
|
|
|
|
language = "en-GB",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
require('lspconfig').pylsp.setup({})
|
|
|
|
|
|
|
|
--require('lspconfig').gopls.setup({
|
|
|
|
-- on_attach = on_attach,
|
|
|
|
--})
|
|
|
|
|
|
|
|
require('lspconfig').julials.setup({
|
|
|
|
--on_attach = on_attach,
|
|
|
|
symbol_cache_download = true,
|
|
|
|
--symbol_server = "https://symbol-server",
|
|
|
|
on_new_config = function(new_config, _)
|
|
|
|
local julia = vim.fn.expand("/usr/share/julia/bin/julia")
|
|
|
|
if require'lspconfig'.util.path.is_file(julia) then
|
|
|
|
vim.notify("Hello!")
|
|
|
|
new_config.cmd[1] = julia
|
|
|
|
end
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
|
|
|
require('lspconfig').zls.setup({})
|
|
|
|
|
|
|
|
require('lspconfig').bashls.setup({})
|
|
|
|
|
|
|
|
-- source: https://rust-analyzer.github.io/manual.html#nvim-lsp
|
|
|
|
--require('lspconfig').rust_analyzer.setup({
|
|
|
|
-- on_attach = on_attach,
|
|
|
|
-- settings = {
|
|
|
|
-- ["rust-analyzer"] = {
|
|
|
|
-- inlayHints = {
|
|
|
|
-- closingBraceHints = true, -- Whether to show inlay hints after a closing } to indicate what item it belongs to.
|
|
|
|
-- }
|
|
|
|
-- }
|
|
|
|
-- }
|
|
|
|
--})
|
|
|
|
|
|
|
|
--[[
|
|
|
|
END LANGUAGE SERVERS CONFIG HERE!!!
|
|
|
|
]]--
|
|
|
|
|
2023-07-17 17:18:14 +00:00
|
|
|
lsp.setup()
|