nvim-lspconfig : fix some mistakes!
This commit is contained in:
		
							parent
							
								
									7bd57b7e93
								
							
						
					
					
						commit
						2fe776a386
					
				| @ -1,8 +1,7 @@ | |||||||
| function on_attach(client) | function on_attach(client) | ||||||
|     local function map(...) |     local function buf_set_keymap(...) | ||||||
|         vim.api.nvim_buf_set_keymap(bufnr, ...) |         vim.api.nvim_buf_set_keymap(bufnr, ...) | ||||||
|     end |     end | ||||||
| 
 |  | ||||||
|     local function buf_set_option(...) |     local function buf_set_option(...) | ||||||
|         vim.api.nvim_buf_set_option(bufnr, ...) |         vim.api.nvim_buf_set_option(bufnr, ...) | ||||||
|     end |     end | ||||||
| @ -10,44 +9,48 @@ function on_attach(client) | |||||||
|     buf_set_option("omnifunc", "v:lua.vim.lsp.omnifunc") |     buf_set_option("omnifunc", "v:lua.vim.lsp.omnifunc") | ||||||
| 
 | 
 | ||||||
|     -- Mappings. |     -- Mappings. | ||||||
|     local opts = {noremap = true, silent = true, normal = true} |     local opts = {noremap = true, silent = true} | ||||||
|     map("gD", "<Cmd>lua vim.lsp.buf.declaration()<CR>", opts) | 
 | ||||||
|     map("gd", "<Cmd>lua vim.lsp.buf.definition()<CR>", opts) |     buf_set_keymap("n", "gD", "<Cmd>lua vim.lsp.buf.declaration()<CR>", opts) | ||||||
|     map("K", "<Cmd>lua vim.lsp.buf.hover()<CR>", opts) |     buf_set_keymap("n", "gd", "<Cmd>lua vim.lsp.buf.definition()<CR>", opts) | ||||||
|     map("gi", "<cmd>lua vim.lsp.buf.implementation()<CR>", opts) |     buf_set_keymap("n", "K", "<Cmd>lua vim.lsp.buf.hover()<CR>", opts) | ||||||
|     map("<C-k>", "<cmd>lua vim.lsp.buf.signature_help()<CR>", opts) |     buf_set_keymap("n", "gi", "<cmd>lua vim.lsp.buf.implementation()<CR>", opts) | ||||||
|     map("<space>wa", "<cmd>lua vim.lsp.buf.add_workspace_folder()<CR>", opts) |     buf_set_keymap("n", "<C-k>", "<cmd>lua vim.lsp.buf.signature_help()<CR>", opts) | ||||||
|     map("<space>wr", "<cmd>lua vim.lsp.buf.remove_workspace_folder()<CR>", opts) |     buf_set_keymap("n", "<space>wa", "<cmd>lua vim.lsp.buf.add_workspace_folder()<CR>", opts) | ||||||
|     map("<space>wl", "<cmd>lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))<CR>", opts) |     buf_set_keymap("n", "<space>wr", "<cmd>lua vim.lsp.buf.remove_workspace_folder()<CR>", opts) | ||||||
|     map("<space>D", "<cmd>lua vim.lsp.buf.type_definition()<CR>", opts) |     buf_set_keymap("n", "<space>wl", "<cmd>lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))<CR>", opts) | ||||||
|     map("<space>rn", "<cmd>lua vim.lsp.buf.rename()<CR>", opts) |     buf_set_keymap("n", "<space>D", "<cmd>lua vim.lsp.buf.type_definition()<CR>", opts) | ||||||
|     map("gr", "<cmd>lua vim.lsp.buf.references()<CR>", opts) |     buf_set_keymap("n", "<space>rn", "<cmd>lua vim.lsp.buf.rename()<CR>", opts) | ||||||
|     map("<space>e", "<cmd>lua vim.lsp.diagnostic.show_line_diagnostics()<CR>", opts) |     buf_set_keymap("n", "gr", "<cmd>lua vim.lsp.buf.references()<CR>", opts) | ||||||
|     map("[d", "<cmd>lua vim.lsp.diagnostic.goto_prev()<CR>", opts) |     buf_set_keymap("n", "<space>e", "<cmd>lua vim.lsp.diagnostic.show_line_diagnostics()<CR>", opts) | ||||||
|     map("]d", "<cmd>lua vim.lsp.diagnostic.goto_next()<CR>", opts) |     buf_set_keymap("n", "[d", "<cmd>lua vim.lsp.diagnostic.goto_prev()<CR>", opts) | ||||||
|     map("<space>q", "<cmd>lua vim.lsp.diagnostic.set_loclist()<CR>", opts) |     buf_set_keymap("n", "]d", "<cmd>lua vim.lsp.diagnostic.goto_next()<CR>", opts) | ||||||
|  |     buf_set_keymap("n", "<space>q", "<cmd>lua vim.lsp.diagnostic.set_loclist()<CR>", opts) | ||||||
| 
 | 
 | ||||||
|     -- Set some keybinds conditional on server capabilities |     -- Set some keybinds conditional on server capabilities | ||||||
|     if client.resolved_capabilities.document_formatting then |     if client.resolved_capabilities.document_formatting then | ||||||
|         map("<space>f", "<cmd>lua vim.lsp.buf.formatting()<CR>", opts) |         buf_set_keymap("n", "<space>f", "<cmd>lua vim.lsp.buf.formatting()<CR>", opts) | ||||||
|     elseif client.resolved_capabilities.document_range_formatting then |     elseif client.resolved_capabilities.document_range_formatting then | ||||||
|         map("<space>f", "<cmd>lua vim.lsp.buf.range_formatting()<CR>", opts) |         buf_set_keymap("n", "<space>f", "<cmd>lua vim.lsp.buf.range_formatting()<CR>", opts) | ||||||
|     end |     end | ||||||
| end | end | ||||||
| 
 | 
 | ||||||
| local lspconf = require "lspconfig" | local lspconf = require("lspconfig") | ||||||
| local servers = {"html", "cssls", "tsserver", "pyright", "bashls", "vls", "clangd", "ccls"} |  | ||||||
| 
 | 
 | ||||||
| for k, lang in pairs(servers) do | -- these langs require same lspconfig so put em all in a table and loop through! | ||||||
|  | local servers = {"html", "cssls", "tsserver", "pyright", "bashls", "clangd", "ccls"} | ||||||
|  | 
 | ||||||
|  | for _, lang in ipairs(servers) do | ||||||
|     lspconf[lang].setup { |     lspconf[lang].setup { | ||||||
|  |         on_attach = on_attach, | ||||||
|         root_dir = vim.loop.cwd |         root_dir = vim.loop.cwd | ||||||
|     } |     } | ||||||
| end | end | ||||||
| 
 | 
 | ||||||
| -- vls example | -- vls conf example | ||||||
| local vls_binary = '/usr/local/bin/vls' | local vls_binary = "/usr/local/bin/vls" | ||||||
| require'lspconfig'.vls.setup { | lspconf.vls.setup { | ||||||
|   cmd = {vls_binary}, |     cmd = {vls_binary} | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| -- lua lsp settings | -- lua lsp settings | ||||||
| @ -56,7 +59,7 @@ USER = "/home/" .. vim.fn.expand("$USER") | |||||||
| local sumneko_root_path = USER .. "/.config/lua-language-server" | local sumneko_root_path = USER .. "/.config/lua-language-server" | ||||||
| local sumneko_binary = USER .. "/.config/lua-language-server/bin/Linux/lua-language-server" | local sumneko_binary = USER .. "/.config/lua-language-server/bin/Linux/lua-language-server" | ||||||
| 
 | 
 | ||||||
| require "lspconfig".sumneko_lua.setup { | lspconf.sumneko_lua.setup { | ||||||
|     cmd = {sumneko_binary, "-E", sumneko_root_path .. "/main.lua"}, |     cmd = {sumneko_binary, "-E", sumneko_root_path .. "/main.lua"}, | ||||||
|     root_dir = function() |     root_dir = function() | ||||||
|         return vim.loop.cwd() |         return vim.loop.cwd() | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user