lsp.lua 3.7 KB

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