lsp.lua 3.9 KB

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