lsp.lua 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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("gofmt") == 1 then
  17. table.insert(null_ls_sources, null_ls.builtins.formatting.gofmt)
  18. end
  19. if vim.fn.executable("shellcheck") == 1 then
  20. table.insert(null_ls_sources, null_ls.builtins.diagnostics.shellcheck)
  21. table.insert(null_ls_sources, null_ls.builtins.code_actions.shellcheck)
  22. end
  23. if vim.fn.executable("deno") == 1 then
  24. nvim_lsp.denols.setup({
  25. on_attach = on_attach,
  26. });
  27. table.insert(null_ls_sources, null_ls.builtins.formatting.deno_fmt);
  28. end
  29. if vim.fn.executable("node_modules/.bin/tsc") == 1 then
  30. -- this provides auto-import on completion, among other things
  31. local ts_utils = require("nvim-lsp-ts-utils")
  32. nvim_lsp.tsserver.setup({
  33. init_options = ts_utils.init_options,
  34. flags = {
  35. debounce_text_changes = 150,
  36. },
  37. on_attach = function(client, bufnr)
  38. -- mark tsserver as not having formatting available as we rely on
  39. -- null-ls/eslint for that and having both available makes nvim ask us
  40. -- which LS to use everytime we format
  41. client.resolved_capabilities.document_formatting = false
  42. client.resolved_capabilities.document_range_formatting = false
  43. -- settings here are buffer-local so has to be run on_attach
  44. ts_utils.setup({
  45. debug = false,
  46. disable_commands = false,
  47. enable_import_on_completion = true,
  48. -- import all
  49. import_all_timeout = 5000, -- ms
  50. -- lower numbers = higher priority
  51. import_all_priorities = {
  52. same_file = 1, -- add to existing import statement
  53. local_files = 2, -- git files or files with relative path markers
  54. buffer_content = 3, -- loaded buffer content
  55. buffers = 4, -- loaded buffer names
  56. },
  57. import_all_scan_buffers = 100,
  58. import_all_select_source = false,
  59. -- filter diagnostics
  60. filter_out_diagnostics_by_severity = {},
  61. filter_out_diagnostics_by_code = {},
  62. -- inlay hints
  63. auto_inlay_hints = false,
  64. inlay_hints_highlight = "Comment",
  65. -- update imports on file move
  66. update_imports_on_move = false,
  67. require_confirmation_on_move = false,
  68. watch_dir = nil,
  69. })
  70. -- required to fix code action ranges and filter diagnostics
  71. ts_utils.setup_client(client)
  72. on_attach(client, bufnr)
  73. end,
  74. })
  75. end
  76. if vim.fn.executable("solargraph") == 1 then
  77. nvim_lsp.solargraph.setup({
  78. on_attach = on_attach,
  79. })
  80. end
  81. local group = vim.api.nvim_create_augroup('LspFormatting', { clear = false })
  82. null_ls.setup({
  83. sources = null_ls_sources,
  84. on_attach = function(client, bufnr)
  85. -- format on save
  86. if client.resolved_capabilities.document_formatting then
  87. for key, cmd in pairs(vim.api.nvim_get_autocmds({ group = group, buffer = bufnr })) do
  88. vim.api.nvim_del_autocmd(cmd.id)
  89. end
  90. vim.api.nvim_create_autocmd('BufWritePre', {
  91. group = group,
  92. buffer = bufnr,
  93. callback = vim.lsp.buf.formatting_sync,
  94. })
  95. end
  96. end,
  97. });
  98. -- show LSP progress bar
  99. require('fidget').setup()