lsp.lua 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. init_options = {
  43. completionDisableFilterText = true,
  44. },
  45. flags = {
  46. debounce_text_changes = 150,
  47. },
  48. on_attach = function(client, bufnr)
  49. -- mark tsserver as not having formatting available as we rely on
  50. -- eslint for that
  51. client.server_capabilities.documentFormattingProvider = false
  52. client.server_capabilities.documentRangeFormattingProvider = false
  53. on_attach(client, bufnr)
  54. -- override mappings for typescript
  55. local opts = { silent = true, buffer = bufnr }
  56. -- exclude import statements from reference search (may have false positives)
  57. vim.keymap.set('n', 'gr', '<cmd>Telescope lsp_references default_text=!import\\ <CR>', opts)
  58. end
  59. }
  60. })
  61. end
  62. if vim.fn.executable("gopls") == 1 then
  63. nvim_lsp.gopls.setup({
  64. on_attach = on_attach,
  65. });
  66. elseif vim.fn.executable("gofmt") == 1 then
  67. table.insert(null_ls_sources, null_ls.builtins.formatting.gofmt)
  68. end
  69. if vim.fn.executable("solargraph") == 1 then
  70. nvim_lsp.solargraph.setup({
  71. on_attach = on_attach,
  72. init_options = {
  73. formatting = false,
  74. }
  75. })
  76. end
  77. if vim.fn.executable("nil") == 1 then
  78. nvim_lsp.nil_ls.setup({
  79. on_attach = on_attach,
  80. });
  81. end
  82. local group = vim.api.nvim_create_augroup('LspFormatting', { clear = false })
  83. null_ls.setup({
  84. sources = null_ls_sources,
  85. on_attach = function(client, bufnr)
  86. -- format on save
  87. if client.server_capabilities.documentFormattingProvider then
  88. for key, cmd in pairs(vim.api.nvim_get_autocmds({ group = group, buffer = bufnr })) do
  89. vim.api.nvim_del_autocmd(cmd.id)
  90. end
  91. vim.api.nvim_create_autocmd('BufWritePre', {
  92. group = group,
  93. buffer = bufnr,
  94. callback = function()
  95. vim.lsp.buf.format()
  96. end,
  97. })
  98. end
  99. end,
  100. });
  101. -- custom LSP servers
  102. local configs = require('lspconfig.configs')
  103. if not configs.elvish then
  104. configs.elvish = {
  105. default_config = {
  106. cmd = {'elvish', '--lsp'},
  107. filetypes = {'elvish'},
  108. root_dir = nvim_lsp.util.root_pattern('*.elv'),
  109. settings = {},
  110. },
  111. }
  112. end
  113. nvim_lsp.elvish.setup({
  114. on_attach = on_attach,
  115. })
  116. -- show LSP progress bar
  117. require('fidget').setup()