Mon, 20 May 2024 12:39:30 -0500
Note get_active_clients deprecation
1014 | 1 | return { |
1084 | 2 | -- mason is nonlazy so my executable tests work |
1064 | 3 | { "williamboman/mason.nvim", config = true }, |
1014 | 4 | |
5 | { | |
1068 | 6 | "neovim/nvim-lspconfig", |
1131
f3044a1658fc
nvim: switch to preferring last symver tag / add exceptions
Meredith Howard <mhoward@roomag.org>
parents:
1128
diff
changeset
|
7 | branch = "master", |
1068 | 8 | event = { "BufReadPre", "BufNewFile" }, |
9 | dependencies = { | |
1096 | 10 | { "williamboman/mason-lspconfig.nvim", config = true }, |
11 | { "folke/neodev.nvim", config = true }, | |
1068 | 12 | }, |
1084 | 13 | config = function(_, _) |
1096 | 14 | local capabilities = require("cmp_nvim_lsp").default_capabilities() |
15 | ||
1014 | 16 | require("mason-lspconfig").setup_handlers({ |
17 | function(server) | |
1096 | 18 | require("lspconfig")[server].setup({ capabilities = capabilities }) |
1014 | 19 | end, |
1064 | 20 | gopls = function() |
1022 | 21 | require("lspconfig").gopls.setup({ |
1096 | 22 | capabilities = capabilities, |
1064 | 23 | settings = { gopls = { gofumpt = true } }, |
1022 | 24 | }) |
1059
dc0095e5bbc8
disable rubocop and formatting in solargraph, add standardrb glue
Meredith Howard <mhoward@roomag.org>
parents:
1055
diff
changeset
|
25 | end, |
1064 | 26 | solargraph = function() |
1059
dc0095e5bbc8
disable rubocop and formatting in solargraph, add standardrb glue
Meredith Howard <mhoward@roomag.org>
parents:
1055
diff
changeset
|
27 | require("lspconfig").solargraph.setup({ |
1096 | 28 | capabilities = capabilities, |
1064 | 29 | init_options = { formatting = false }, |
1059
dc0095e5bbc8
disable rubocop and formatting in solargraph, add standardrb glue
Meredith Howard <mhoward@roomag.org>
parents:
1055
diff
changeset
|
30 | }) |
dc0095e5bbc8
disable rubocop and formatting in solargraph, add standardrb glue
Meredith Howard <mhoward@roomag.org>
parents:
1055
diff
changeset
|
31 | end, |
1014 | 32 | }) |
33 | end, | |
34 | }, | |
1128
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
35 | |
1146
2c9d3c1940a4
Add catlee/pull_diags.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1135
diff
changeset
|
36 | { "j-hui/fidget.nvim", event = "LspAttach", config = true }, |
2c9d3c1940a4
Add catlee/pull_diags.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1135
diff
changeset
|
37 | |
2c9d3c1940a4
Add catlee/pull_diags.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1135
diff
changeset
|
38 | -- Support pull diagnostics until 0.10 |
1167
f5f84f890974
Update for neovim 0.10
Meredith Howard <mhoward@roomag.org>
parents:
1154
diff
changeset
|
39 | { "catlee/pull_diags.nvim", event = "LspAttach", config = true, cond = (vim.fn.has("nvim-0.10") == 0) }, |
1146
2c9d3c1940a4
Add catlee/pull_diags.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1135
diff
changeset
|
40 | |
1128
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
41 | { |
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
42 | "aznhe21/actions-preview.nvim", |
1152
59d9ca2ec2fd
Match LSP maps to neovim 0.10 defs
Meredith Howard <mhoward@roomag.org>
parents:
1149
diff
changeset
|
43 | event = "LspAttach", |
1128
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
44 | opts = { |
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
45 | nui = { |
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
46 | keymap = { close = { "<ESC>", "<C-c>", "q" } }, |
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
47 | }, |
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
48 | }, |
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
49 | }, |
1148
bca491e2be91
Fix lsp_signature.nvim behavior
Meredith Howard <mhoward@roomag.org>
parents:
1146
diff
changeset
|
50 | |
bca491e2be91
Fix lsp_signature.nvim behavior
Meredith Howard <mhoward@roomag.org>
parents:
1146
diff
changeset
|
51 | { |
bca491e2be91
Fix lsp_signature.nvim behavior
Meredith Howard <mhoward@roomag.org>
parents:
1146
diff
changeset
|
52 | "ray-x/lsp_signature.nvim", |
bca491e2be91
Fix lsp_signature.nvim behavior
Meredith Howard <mhoward@roomag.org>
parents:
1146
diff
changeset
|
53 | branch = "master", |
1154
dc04a7db1e83
Fix signature_help toggle
Meredith Howard <mhoward@roomag.org>
parents:
1152
diff
changeset
|
54 | event = "VeryLazy", |
1148
bca491e2be91
Fix lsp_signature.nvim behavior
Meredith Howard <mhoward@roomag.org>
parents:
1146
diff
changeset
|
55 | opts = { |
1154
dc04a7db1e83
Fix signature_help toggle
Meredith Howard <mhoward@roomag.org>
parents:
1152
diff
changeset
|
56 | toggle_key = "<C-S>", |
1149
4af7c8156683
One more lsp_signature change
Meredith Howard <mhoward@roomag.org>
parents:
1148
diff
changeset
|
57 | select_signature_key = "<M-n>", |
1148
bca491e2be91
Fix lsp_signature.nvim behavior
Meredith Howard <mhoward@roomag.org>
parents:
1146
diff
changeset
|
58 | toggle_key_flip_floatwin_setting = true, |
bca491e2be91
Fix lsp_signature.nvim behavior
Meredith Howard <mhoward@roomag.org>
parents:
1146
diff
changeset
|
59 | doc_lines = 0, |
bca491e2be91
Fix lsp_signature.nvim behavior
Meredith Howard <mhoward@roomag.org>
parents:
1146
diff
changeset
|
60 | floating_window = true, |
bca491e2be91
Fix lsp_signature.nvim behavior
Meredith Howard <mhoward@roomag.org>
parents:
1146
diff
changeset
|
61 | fix_pos = true, |
bca491e2be91
Fix lsp_signature.nvim behavior
Meredith Howard <mhoward@roomag.org>
parents:
1146
diff
changeset
|
62 | hint_enable = false, |
bca491e2be91
Fix lsp_signature.nvim behavior
Meredith Howard <mhoward@roomag.org>
parents:
1146
diff
changeset
|
63 | }, |
bca491e2be91
Fix lsp_signature.nvim behavior
Meredith Howard <mhoward@roomag.org>
parents:
1146
diff
changeset
|
64 | }, |
1014 | 65 | } |