lsp.lua 3.8 KB

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