local cmd = vim.cmd local M = {} -- Command for formatting lua code local formatLua = "lua-format -i --no-keep-simple-function-one-line --no-break-after-operator --column-limit=150 --break-after-table-lb" -- Use a loop to conveniently call 'setup' on multiple servers and -- map buffer local keybindings when the language server attaches local servers = { tsserver = {settings = {}, cmd = nil}, sumneko_lua = { settings = { Lua = { runtime = { -- Tell the language server which version of Lua you're using (most likely LuaJIT in the case of Neovim) version = 'LuaJIT', -- Setup your lua path path = runtime_path }, diagnostics = { -- Get the language server to recognize the `vim` global globals = {'vim'} }, workspace = { -- Make the server aware of Neovim runtime files library = vim.api.nvim_get_runtime_file("", true) }, -- Do not send telemetry data containing a randomized but unique identifier telemetry = {enable = false} } }, cmd = {"lua-language-server"} }, purescriptls = { settings = {purescript = {censorWarnings = {"UnusedName", "ShadowedName", "UserDefinedWarning"}, formatter = "purs-tidy"}}, cmd = nil }, rnix = {settings = {}, cmd = nil} } local function map(buf, mode, lhs, rhs, opts) local options = {noremap = true, silent = true} if opts then options = vim.tbl_extend('force', options, opts) end vim.api.nvim_buf_set_keymap(buf, mode, lhs, rhs, options) end local function on_attach(client, bufnr) -- Enable completion triggered by vim.api.nvim_buf_set_option(bufnr, 'omnifunc', 'v:lua.vim.lsp.omnifunc') -- Go to declaration / definition / implementation map(bufnr, "n", 'gD', 'lua vim.lsp.buf.declaration()') map(bufnr, "n", 'gd', 'lua vim.lsp.buf.definition()') map(bufnr, 'n', 'gi', 'lua vim.lsp.buf.implementation()') -- Hover map(bufnr, 'n', 'K', 'lua vim.lsp.buf.hover()') map(bufnr, 'n', '', 'lua vim.lsp.buf.signature_help()') -- Workspace stuff map(bufnr, 'n', 'wa', 'lua vim.lsp.buf.add_workspace_folder()') map(bufnr, 'n', 'wr', 'lua vim.lsp.buf.remove_workspace_folder()') map(bufnr, 'n', 'wl', 'lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))') -- Code actions map(bufnr, 'n', 'D', 'lua vim.lsp.buf.type_definition()') map(bufnr, 'n', 'rn', 'lua vim.lsp.buf.rename()') map(bufnr, 'n', 'ca', 'lua vim.lsp.buf.code_action()') map(bufnr, 'n', 'gr', 'lua vim.lsp.buf.references()') map(bufnr, 'n', 'f', 'lua vim.lsp.buf.formatting()') end function M.setup() -- Setup basic language servers for lsp, details in pairs(servers) do require('lspconfig')[lsp].setup { on_attach = on_attach, settings = details.settings, -- Specific per-language settings flags = { debounce_text_changes = 150 -- This will be the default in neovim 0.7+ }, cmd = details.cmd } end -- Setup auto-formatting require"lspconfig".efm.setup { init_options = {documentFormatting = true}, filetypes = {"lua"}, settings = {rootMarkers = {".git/"}, languages = {lua = {{formatCommand = formatLua, formatStdin = true}}}} } -- Auto format lua stuff cmd("autocmd BufWritePre *.lua lua vim.lsp.buf.formatting_sync(nil, 100)") -- cmd("autocmd BufWritePre nix vim.lsp.buf.formatting_sync(nil, 100)") end return M