2024-03-12 01:28:22 -04:00
|
|
|
-- https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md
|
2024-03-15 15:05:44 -04:00
|
|
|
require("neodev").setup({
|
|
|
|
-- add any options here, or leave empty to use the default settings
|
|
|
|
})
|
2024-03-12 01:28:22 -04:00
|
|
|
local capabilities = require("cmp_nvim_lsp").default_capabilities()
|
|
|
|
|
|
|
|
capabilities.textDocument.foldingRange = {
|
|
|
|
dynamicRegistration = false,
|
|
|
|
lineFoldingOnly = true,
|
|
|
|
}
|
2024-03-14 20:49:32 -04:00
|
|
|
|
|
|
|
require("lspconfig").yamlls.setup({
|
|
|
|
capabilities = capabilities,
|
|
|
|
settings = {
|
|
|
|
yaml = {
|
|
|
|
schemas = {
|
|
|
|
["/home/meyer/.config/nvim/clangdschema.json"] = "/.clangd",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
require("lspconfig").clangd.setup({
|
|
|
|
capabilities = capabilities,
|
2024-03-15 15:05:44 -04:00
|
|
|
cmd = {
|
|
|
|
"clangd",
|
|
|
|
"--header-insertion=iwyu",
|
|
|
|
},
|
2024-03-14 20:49:32 -04:00
|
|
|
})
|
2024-03-21 15:49:14 -04:00
|
|
|
require("lspconfig").prismals.setup({
|
|
|
|
capabilities = capabilities,
|
|
|
|
})
|
|
|
|
require("lspconfig").asm_lsp.setup({
|
|
|
|
capabilities = capabilities,
|
|
|
|
})
|
2024-03-12 15:22:20 -04:00
|
|
|
require("lspconfig").pyright.setup({
|
|
|
|
capabilities = capabilities,
|
|
|
|
})
|
|
|
|
require("lspconfig").tsserver.setup({
|
|
|
|
capabilities = capabilities,
|
|
|
|
})
|
2024-03-12 01:28:22 -04:00
|
|
|
--
|
|
|
|
require("lspconfig").kotlin_language_server.setup({
|
|
|
|
capabilities = capabilities,
|
|
|
|
})
|
|
|
|
--Java
|
|
|
|
require("lspconfig").java_language_server.setup({
|
|
|
|
capabilities = capabilities,
|
|
|
|
})
|
|
|
|
--Lua
|
|
|
|
require("lspconfig").lua_ls.setup({
|
|
|
|
capabilities = capabilities,
|
|
|
|
on_init = function(client)
|
|
|
|
local path = client.workspace_folders[1].name
|
|
|
|
if vim.loop.fs_stat(path .. "/.luarc.json") or vim.loop.fs_stat(path .. "/.luarc.jsonc") then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
client.config.settings.Lua = vim.tbl_deep_extend("force", client.config.settings.Lua, {
|
|
|
|
runtime = {
|
|
|
|
-- Tell the language server which version of Lua you're using
|
|
|
|
-- (most likely LuaJIT in the case of Neovim)
|
|
|
|
version = "LuaJIT",
|
|
|
|
},
|
|
|
|
-- Make the server aware of Neovim runtime files
|
|
|
|
workspace = {
|
|
|
|
checkThirdParty = false,
|
|
|
|
-- or pull in all of 'runtimepath'. NOTE: this is a lot slower
|
2024-03-15 15:05:44 -04:00
|
|
|
library = vim.api.nvim_get_runtime_file("", true)
|
2024-03-12 01:28:22 -04:00
|
|
|
},
|
|
|
|
})
|
|
|
|
end,
|
2024-03-15 15:05:44 -04:00
|
|
|
settings = {
|
|
|
|
Lua = {
|
|
|
|
completion = {
|
|
|
|
callSnippet = "Replace",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2024-03-12 01:28:22 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
local luasnip = require("luasnip")
|
2024-03-12 15:22:20 -04:00
|
|
|
local pairs = require("nvim-autopairs.completion.cmp")
|
2024-03-12 01:28:22 -04:00
|
|
|
local cmp = require("cmp")
|
|
|
|
cmp.setup({
|
|
|
|
snippet = {
|
|
|
|
expand = function(args)
|
|
|
|
luasnip.lsp_expand(args.body)
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
mapping = cmp.mapping.preset.insert({
|
|
|
|
-- ['<C-u>'] = cmp.mapping.scroll_docs(-4), -- Up
|
|
|
|
-- ['<C-d>'] = cmp.mapping.scroll_docs(4), -- Down
|
|
|
|
-- C-b (back) C-f (forward) for snippet placeholder navigation.
|
2024-03-12 15:22:20 -04:00
|
|
|
["<C-Space>"] = cmp.mapping.complete(),
|
2024-03-12 01:28:22 -04:00
|
|
|
["<CR>"] = cmp.mapping.confirm({
|
|
|
|
behavior = cmp.ConfirmBehavior.Replace,
|
|
|
|
select = true,
|
|
|
|
}),
|
|
|
|
["<Tab>"] = cmp.mapping(function(fallback)
|
|
|
|
if cmp.visible() then
|
|
|
|
cmp.select_next_item()
|
|
|
|
elseif luasnip.expand_or_jumpable() then
|
|
|
|
luasnip.expand_or_jump()
|
|
|
|
else
|
|
|
|
fallback()
|
|
|
|
end
|
|
|
|
end, { "i", "s" }),
|
|
|
|
["<S-Tab>"] = cmp.mapping(function(fallback)
|
|
|
|
if cmp.visible() then
|
|
|
|
cmp.select_prev_item()
|
|
|
|
elseif luasnip.jumpable(-1) then
|
|
|
|
luasnip.jump(-1)
|
|
|
|
else
|
|
|
|
fallback()
|
|
|
|
end
|
|
|
|
end, { "i", "s" }),
|
|
|
|
}),
|
|
|
|
sources = {
|
|
|
|
{ name = "nvim_lsp" },
|
|
|
|
{ name = "luasnip" },
|
2024-03-12 15:22:20 -04:00
|
|
|
{ name = "hrsh7th/cmp-nvim-lsp-signature-help" },
|
2024-03-12 01:28:22 -04:00
|
|
|
},
|
|
|
|
})
|
2024-03-12 15:22:20 -04:00
|
|
|
cmp.event:on("confirm_done", pairs.on_confirm_done())
|
2024-03-14 20:49:32 -04:00
|
|
|
require("setupclangdext")
|
2024-03-22 18:27:51 -04:00
|
|
|
|
|
|
|
require("null-ls").setup()
|
|
|
|
|
|
|
|
require("eslint").setup({
|
|
|
|
bin = 'eslint_d', -- or `eslint`
|
|
|
|
code_actions = {
|
|
|
|
enable = true,
|
|
|
|
apply_on_save = {
|
|
|
|
enable = true,
|
|
|
|
types = { "directive", "problem", "suggestion", "layout" },
|
|
|
|
},
|
|
|
|
disable_rule_comment = {
|
|
|
|
enable = true,
|
|
|
|
location = "separate_line", -- or `same_line`
|
|
|
|
},
|
|
|
|
},
|
|
|
|
diagnostics = {
|
|
|
|
enable = true,
|
|
|
|
report_unused_disable_directives = false,
|
|
|
|
run_on = "type", -- or `save`
|
|
|
|
},
|
|
|
|
})
|