You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

301 lines
11 KiB

9 months ago
9 months ago
  1. return {
  2. "neovim/nvim-lspconfig",
  3. event = { "BufReadPre", "BufNewFile" },
  4. dependencies = {
  5. { "hrsh7th/cmp-nvim-lsp" },
  6. { "antosha417/nvim-lsp-file-operations", config = true },
  7. { "williamboman/mason.nvim", config = true },
  8. { "williamboman/mason-lspconfig.nvim" },
  9. { "WhoIsSethDaniel/mason-tool-installer.nvim" },
  10. { "j-hui/fidget.nvim", opts = {} },
  11. { "folke/neodev.nvim", opts = {} },
  12. },
  13. config = function()
  14. local lspconfig = require("lspconfig")
  15. local util = require("lspconfig.util")
  16. local keymap = vim.keymap
  17. vim.api.nvim_create_autocmd("LspAttach", {
  18. group = vim.api.nvim_create_augroup("lsp-attach", { clear = true }),
  19. callback = function(event)
  20. local opts = { noremap = true, silent = true }
  21. opts.desc = "Show LSP references"
  22. keymap.set("n", "gr", "<cmd>Telescope lsp_references<CR>", opts)
  23. opts.desc = "Go to declaration"
  24. keymap.set("n", "gD", vim.lsp.buf.declaration, opts)
  25. opts.desc = "Show LSP definitions"
  26. keymap.set("n", "gd", "<cmd>Telescope lsp_definitions<CR>", opts)
  27. opts.desc = "Show LSP implementations"
  28. keymap.set("n", "gi", "<cmd>Telescope lsp_implementations<CR>", opts)
  29. opts.desc = "Show LSP type definitions"
  30. keymap.set("n", "gt", "<cmd>Telescope lsp_type_definitions<CR>", opts)
  31. opts.desc = "See available code actions"
  32. keymap.set({ "n", "v" }, "<leader>ca", vim.lsp.buf.code_action, opts)
  33. opts.desc = "Smart rename"
  34. keymap.set("n", "<leader>rn", vim.lsp.buf.rename, opts)
  35. opts.desc = "Show buffer diagnostics"
  36. keymap.set("n", "<leader>D", "<cmd>Telescope diagnostics bufnr=0<CR>", opts)
  37. opts.desc = "Show line diagnostics"
  38. keymap.set("n", "<leader>d", vim.diagnostic.open_float, opts)
  39. opts.desc = "Go to previous diagnostic"
  40. keymap.set("n", "[d", vim.diagnostic.goto_prev, opts)
  41. opts.desc = "Go to next diagnostic"
  42. keymap.set("n", "]d", vim.diagnostic.goto_next, opts)
  43. opts.desc = "Go to previous diagnostic (error only)"
  44. keymap.set("n", "[e", function()
  45. vim.diagnostic.goto_prev({ severity = vim.diagnostic.severity.ERROR })
  46. end, opts)
  47. opts.desc = "Go to next diagnostic (error only)"
  48. keymap.set("n", "]e", function()
  49. vim.diagnostic.goto_next({ severity = vim.diagnostic.severity.ERROR })
  50. end, opts)
  51. opts.desc = "Show documentation for what is under cursor"
  52. keymap.set("n", "K", vim.lsp.buf.hover, opts)
  53. local client = vim.lsp.get_client_by_id(event.data.client_id)
  54. if client and client.server_capabilities.documentHighlightProvider then
  55. vim.api.nvim_create_autocmd("LspDetach", {
  56. group = vim.api.nvim_create_augroup("lsp-detach", { clear = true }),
  57. callback = function(event2)
  58. vim.lsp.buf.clear_references()
  59. end,
  60. })
  61. end
  62. -- The following autocommand is used to enable inlay hints in your
  63. -- code, if the language server you are using supports them
  64. --
  65. -- This may be unwanted, since they displace some of your code
  66. if client and client.server_capabilities.inlayHintProvider and vim.lsp.inlay_hint then
  67. opts.desc = "Toggle Inlay Hints"
  68. keymap.set("n", "<leader>th", function()
  69. vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled({}))
  70. end, opts)
  71. end
  72. end,
  73. })
  74. local capabilities = vim.lsp.protocol.make_client_capabilities()
  75. capabilities = vim.tbl_deep_extend("force", capabilities, require("cmp_nvim_lsp").default_capabilities())
  76. -- Function to detect the operating system
  77. local function get_os()
  78. local handle = io.popen("uname")
  79. if not handle then
  80. return error("Failed to detect operating system")
  81. end
  82. local result = handle:read("*a")
  83. handle:close()
  84. return result:lower():gsub("%s+", "")
  85. end
  86. -- base_path = "/usr/lib/node_modules"
  87. local base_path = "/usr/local/lib/node_modules"
  88. if get_os() == "darwin" then
  89. base_path = "/opt/homebrew/lib/node_modules"
  90. end
  91. local function get_typescript_server_path(root_dir)
  92. local global_ts = base_path .. "/typescript/lib"
  93. local found_ts = ""
  94. local function check_dir(path)
  95. found_ts = util.path.join(path, "node_modules", "typescript", "lib")
  96. if vim.loop.fs_stat(found_ts) then
  97. return path
  98. end
  99. end
  100. if util.search_ancestors(root_dir .. '/frontend/node_modules', check_dir) then
  101. return found_ts
  102. end
  103. if util.search_ancestors(root_dir .. '/node_modules', check_dir) then
  104. return found_ts
  105. end
  106. return global_ts
  107. end
  108. local path = util.path
  109. local function organize_imports()
  110. local params = {
  111. command = "_typescript.organizeImports",
  112. arguments = {vim.api.nvim_buf_get_name(0)},
  113. title = ""
  114. }
  115. vim.lsp.buf.execute_command(params)
  116. end
  117. local servers = {
  118. ts_ls = {
  119. init_options = {
  120. plugins = {
  121. {
  122. name = "@vue/typescript-plugin",
  123. location = base_path .. "/@vue/typescript-plugin",
  124. languages = { "javascript", "typescript", "vue", "react" },
  125. },
  126. },
  127. },
  128. filetypes = {
  129. "javascript",
  130. "typescript",
  131. "vue",
  132. "typescriptreact",
  133. },
  134. commands = {
  135. OrganizeImports = {
  136. organize_imports,
  137. description = "Organize Imports"
  138. }
  139. },
  140. on_new_config = function(new_config, new_root_dir)
  141. if get_typescript_server_path then
  142. new_config.init_options.typescript = new_config.init_options.typescript or {}
  143. new_config.init_options.typescript.tsdk = get_typescript_server_path(new_root_dir)
  144. else
  145. vim.notify("get_typescript_server_path is not defined", vim.log.levels.ERROR)
  146. end
  147. end,
  148. },
  149. -- volar = {
  150. -- filetypes = {
  151. -- "javascript",
  152. -- "typescript",
  153. -- "vue",
  154. -- },
  155. -- on_new_config = function(new_config, new_root_dir)
  156. -- new_config.init_options.typescript.tsdk = get_typescript_server_path(new_root_dir)
  157. -- end,
  158. -- },
  159. cssls = {},
  160. intelephense = {
  161. root_dir = function(pattern)
  162. ---@diagnostic disable-next-line: undefined-field
  163. local cwd = vim.loop.cwd()
  164. local root = util.root_pattern("composer.json")(pattern)
  165. -- prefer cwd if root is a descendant
  166. return util.path.is_descendant(cwd, root) and cwd or root
  167. end,
  168. init_options = {
  169. licenceKey = vim.fn.expand("$HOME/.local/share/nvim/intelephense-licence.txt"),
  170. },
  171. settings = {
  172. intelephense = {
  173. format = {
  174. enable = true,
  175. sortUseStatements = false,
  176. },
  177. },
  178. },
  179. },
  180. gopls = {
  181. cmd = { "gopls" },
  182. filetypes = { "go", "gomod", "gowork", "gotmpl" },
  183. root_dir = util.root_pattern("go.work", "go.mod", ".git"),
  184. settings = {
  185. gopls = {
  186. completeUnimported = true,
  187. usePlaceholders = true,
  188. analyses = {
  189. unusedparams = true,
  190. },
  191. },
  192. },
  193. },
  194. lua_ls = {
  195. settings = { -- custom settings for lua
  196. Lua = {
  197. -- make the language server recognize "vim" global
  198. diagnostics = {
  199. globals = { "vim" },
  200. },
  201. workspace = {
  202. -- make language server aware of runtime files
  203. library = {
  204. [vim.fn.expand("$VIMRUNTIME/lua")] = true,
  205. [vim.fn.stdpath("config") .. "/lua"] = true,
  206. },
  207. },
  208. },
  209. },
  210. },
  211. dartls = {
  212. cmd = { "dart", "language-server", "--protocol=lsp" },
  213. },
  214. rust_analyzer = {
  215. diagnostics = {
  216. enable = false,
  217. },
  218. },
  219. pyright = {
  220. -- before_init = function(_, config)
  221. -- config.settings.python.pythonpath = get_python_path(config.root_dir)
  222. -- end
  223. },
  224. yamlls = {
  225. settings = {
  226. yaml = {
  227. keyOrdering = false,
  228. },
  229. },
  230. },
  231. }
  232. require("mason").setup()
  233. local ensure_installed = vim.tbl_keys(servers or {})
  234. vim.list_extend(ensure_installed, {
  235. "stylua",
  236. "prettier",
  237. "prettierd",
  238. "eslint",
  239. "eslint_d",
  240. "jsonlint",
  241. "markdownlint",
  242. "phpcbf",
  243. "phpcs",
  244. "golangci-lint",
  245. "hadolint",
  246. "gofumpt",
  247. "goimports",
  248. })
  249. require("mason-tool-installer").setup({
  250. ensure_installed = ensure_installed,
  251. run_on_start = false,
  252. })
  253. require("mason-lspconfig").setup()
  254. for server_name, server in pairs(servers) do
  255. server.capabilities = vim.tbl_deep_extend("force", {}, capabilities, server.capabilities or {})
  256. lspconfig[server_name].setup(server)
  257. end
  258. end,
  259. }