lsp.lua 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. vim.diagnostic.config({
  2. -- only show virtual text for WARN and higher
  3. virtual_text = { severity = { min = vim.diagnostic.severity.WARN } },
  4. })
  5. local nvim_lsp = require('lspconfig')
  6. local null_ls = require('null-ls')
  7. local null_ls_sources = {
  8. null_ls.builtins.code_actions.gitsigns,
  9. }
  10. if vim.fn.executable("node_modules/.bin/eslint") == 1 then
  11. local options = {}
  12. -- some projects have local rules, this isn't exactly generic but is good
  13. -- enough
  14. if vim.fn.isdirectory("lint-rules") == 1 then
  15. options.rulePaths = { "./lint-rules" }
  16. end
  17. nvim_lsp.eslint.setup({
  18. settings = {
  19. options = options,
  20. },
  21. on_attach = function(client, bufnr)
  22. -- add formatting capability, the language server registers this
  23. -- dynamically but neovim does not support that yet
  24. -- https://github.com/microsoft/vscode-eslint/pull/1307
  25. client.server_capabilities.documentFormattingProvider = true
  26. client.server_capabilities.documentRangeFormattingProvider = true
  27. on_attach(client, bufnr)
  28. end,
  29. })
  30. end
  31. if vim.fn.executable("shellcheck") == 1 then
  32. table.insert(null_ls_sources, null_ls.builtins.diagnostics.shellcheck)
  33. table.insert(null_ls_sources, null_ls.builtins.code_actions.shellcheck)
  34. end
  35. if vim.fn.executable("deno") == 1 then
  36. nvim_lsp.denols.setup({
  37. on_attach = on_attach,
  38. });
  39. else
  40. require('typescript').setup({
  41. server = {
  42. flags = {
  43. debounce_text_changes = 150,
  44. },
  45. on_attach = function(client, bufnr)
  46. -- mark tsserver as not having formatting available as we rely on
  47. -- eslint for that
  48. client.server_capabilities.documentFormattingProvider = false
  49. client.server_capabilities.documentRangeFormattingProvider = false
  50. on_attach(client, bufnr)
  51. -- override mappings for typescript
  52. local opts = { silent = true, buffer = bufnr }
  53. -- exclude import statements from reference search (may have false positives)
  54. vim.keymap.set('n', 'gr', '<cmd>Telescope lsp_references default_text=!import\\ <CR>', opts)
  55. end
  56. }
  57. })
  58. end
  59. if vim.fn.executable("gopls") == 1 then
  60. nvim_lsp.gopls.setup({
  61. on_attach = on_attach,
  62. });
  63. elseif vim.fn.executable("gofmt") == 1 then
  64. table.insert(null_ls_sources, null_ls.builtins.formatting.gofmt)
  65. end
  66. if vim.fn.executable("solargraph") == 1 then
  67. nvim_lsp.solargraph.setup({
  68. on_attach = on_attach,
  69. init_options = {
  70. formatting = false,
  71. }
  72. })
  73. end
  74. local group = vim.api.nvim_create_augroup('LspFormatting', { clear = false })
  75. null_ls.setup({
  76. sources = null_ls_sources,
  77. on_attach = function(client, bufnr)
  78. -- format on save
  79. if client.server_capabilities.documentFormattingProvider then
  80. for key, cmd in pairs(vim.api.nvim_get_autocmds({ group = group, buffer = bufnr })) do
  81. vim.api.nvim_del_autocmd(cmd.id)
  82. end
  83. vim.api.nvim_create_autocmd('BufWritePre', {
  84. group = group,
  85. buffer = bufnr,
  86. callback = function()
  87. vim.lsp.buf.format()
  88. end,
  89. })
  90. end
  91. end,
  92. });
  93. -- custom LSP servers
  94. local configs = require('lspconfig.configs')
  95. if not configs.elvish then
  96. configs.elvish = {
  97. default_config = {
  98. cmd = {'elvish', '--lsp'},
  99. filetypes = {'elvish'},
  100. root_dir = nvim_lsp.util.root_pattern('*.elv'),
  101. settings = {},
  102. },
  103. }
  104. end
  105. nvim_lsp.elvish.setup({
  106. on_attach = on_attach,
  107. })
  108. -- show LSP progress bar
  109. require('fidget').setup()