lsp.lua 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. -- only show virtual text for WARN and higher
  2. vim.diagnostic.config({
  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. -- enable LS / null-ls sources based on executable presence
  11. if vim.fn.executable("node_modules/.bin/eslint") == 1 then
  12. table.insert(null_ls_sources, null_ls.builtins.formatting.eslint_d)
  13. table.insert(null_ls_sources, null_ls.builtins.diagnostics.eslint_d)
  14. table.insert(null_ls_sources, null_ls.builtins.code_actions.eslint_d)
  15. end
  16. if vim.fn.executable("shellcheck") == 1 then
  17. table.insert(null_ls_sources, null_ls.builtins.diagnostics.shellcheck)
  18. table.insert(null_ls_sources, null_ls.builtins.code_actions.shellcheck)
  19. end
  20. if vim.fn.executable("deno") == 1 then
  21. nvim_lsp.denols.setup({
  22. on_attach = on_attach,
  23. });
  24. end
  25. if vim.fn.executable("gopls") == 1 then
  26. nvim_lsp.gopls.setup({
  27. on_attach = on_attach,
  28. });
  29. elseif vim.fn.executable("gofmt") == 1 then
  30. table.insert(null_ls_sources, null_ls.builtins.formatting.gofmt)
  31. end
  32. if vim.fn.executable("node_modules/.bin/tsc") == 1 then
  33. require('typescript').setup({
  34. server = {
  35. flags = {
  36. debounce_text_changes = 150,
  37. },
  38. on_attach = function(client, bufnr)
  39. -- mark tsserver as not having formatting available as we rely on
  40. -- null-ls/eslint for that and having both available makes nvim ask us
  41. -- which LS to use everytime we format
  42. client.server_capabilities.documentFormattingProvider = false
  43. client.server_capabilities.documentRangeFormattingProvider = false
  44. on_attach(client, bufnr)
  45. -- override mappings for typescript
  46. local opts = { silent = true, buffer = bufnr }
  47. -- exclude import statements from reference search (may have false positives)
  48. vim.keymap.set('n', 'gr', '<cmd>Telescope lsp_references default_text=!import\\ <CR>', opts)
  49. end
  50. }
  51. })
  52. -- set compiler for :make
  53. vim.cmd("compiler! tsc")
  54. end
  55. if vim.fn.executable("solargraph") == 1 then
  56. nvim_lsp.solargraph.setup({
  57. on_attach = on_attach,
  58. init_options = {
  59. formatting = false,
  60. }
  61. })
  62. end
  63. local group = vim.api.nvim_create_augroup('LspFormatting', { clear = false })
  64. null_ls.setup({
  65. sources = null_ls_sources,
  66. on_attach = function(client, bufnr)
  67. -- format on save
  68. if client.server_capabilities.documentFormattingProvider then
  69. for key, cmd in pairs(vim.api.nvim_get_autocmds({ group = group, buffer = bufnr })) do
  70. vim.api.nvim_del_autocmd(cmd.id)
  71. end
  72. vim.api.nvim_create_autocmd('BufWritePre', {
  73. group = group,
  74. buffer = bufnr,
  75. callback = function()
  76. vim.lsp.buf.format()
  77. end,
  78. })
  79. end
  80. end,
  81. });
  82. -- custom LSP servers
  83. local configs = require('lspconfig.configs')
  84. if not configs.elvish then
  85. configs.elvish = {
  86. default_config = {
  87. cmd = {'elvish', '--lsp'},
  88. filetypes = {'elvish'},
  89. root_dir = nvim_lsp.util.root_pattern('*.elv'),
  90. settings = {},
  91. },
  92. }
  93. end
  94. nvim_lsp.elvish.setup({
  95. on_attach = on_attach,
  96. })
  97. -- show LSP progress bar
  98. require('fidget').setup()