lsp.lua 3.5 KB

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