Thu, 11 Apr 2024 13:19:24 -0400
add .luarc.jsonc
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 }, | |
1135
7a17b7825b5f
switch fidget.nvim back to main
Meredith Howard <mhoward@roomag.org>
parents:
1131
diff
changeset
|
12 | { "j-hui/fidget.nvim", config = true }, |
1068 | 13 | }, |
1084 | 14 | config = function(_, _) |
1096 | 15 | local capabilities = require("cmp_nvim_lsp").default_capabilities() |
16 | ||
1014 | 17 | require("mason-lspconfig").setup_handlers({ |
18 | function(server) | |
1096 | 19 | require("lspconfig")[server].setup({ capabilities = capabilities }) |
1014 | 20 | end, |
1064 | 21 | gopls = function() |
1022 | 22 | require("lspconfig").gopls.setup({ |
1096 | 23 | capabilities = capabilities, |
1064 | 24 | settings = { gopls = { gofumpt = true } }, |
1022 | 25 | }) |
1059
dc0095e5bbc8
disable rubocop and formatting in solargraph, add standardrb glue
Meredith Howard <mhoward@roomag.org>
parents:
1055
diff
changeset
|
26 | end, |
1064 | 27 | solargraph = function() |
1059
dc0095e5bbc8
disable rubocop and formatting in solargraph, add standardrb glue
Meredith Howard <mhoward@roomag.org>
parents:
1055
diff
changeset
|
28 | require("lspconfig").solargraph.setup({ |
1096 | 29 | capabilities = capabilities, |
1064 | 30 | init_options = { formatting = false }, |
1059
dc0095e5bbc8
disable rubocop and formatting in solargraph, add standardrb glue
Meredith Howard <mhoward@roomag.org>
parents:
1055
diff
changeset
|
31 | }) |
dc0095e5bbc8
disable rubocop and formatting in solargraph, add standardrb glue
Meredith Howard <mhoward@roomag.org>
parents:
1055
diff
changeset
|
32 | end, |
1014 | 33 | }) |
34 | end, | |
35 | }, | |
1128
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
36 | |
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
37 | { |
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
38 | "aznhe21/actions-preview.nvim", |
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
39 | keys = "<leader>ca", |
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
40 | opts = { |
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
41 | nui = { |
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
42 | keymap = { close = { "<ESC>", "<C-c>", "q" } }, |
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
43 | }, |
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
44 | }, |
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
45 | config = function(_, opts) |
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
46 | require("actions-preview").setup(opts) |
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
47 | vim.keymap.set("n", "<leader>ca", require("actions-preview").code_actions, { silent = true }) |
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
48 | end, |
30d81fbc6a7b
add actions-preview.nvim
Meredith Howard <mhoward@roomag.org>
parents:
1120
diff
changeset
|
49 | }, |
1014 | 50 | } |