2024-02-29 18:55:10 +01:00
|
|
|
--- Automatically set the filetype for all buffers matching a pattern.
|
|
|
|
--- Uses an autocommand under the hood
|
|
|
|
--- @param pattern string|string[] What buffers to match on.
|
|
|
|
--- @see vim.api.nvim_create_autocmd
|
|
|
|
--- @param filetype string The filetype to set for the matching buffers
|
|
|
|
local function bind_filetype(pattern, filetype)
|
|
|
|
vim.api.nvim_create_autocmd({ "BufNewFile", "BufRead" }, {
|
|
|
|
pattern = pattern,
|
|
|
|
callback = function()
|
|
|
|
vim.bo.filetype = filetype
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2023-12-18 09:11:00 +01:00
|
|
|
return {
|
2024-01-07 16:26:06 +01:00
|
|
|
{ import = "plugins/languages" },
|
2024-02-29 19:06:28 +01:00
|
|
|
{
|
|
|
|
"folke/neodev.nvim",
|
|
|
|
opts = {
|
|
|
|
lspconfig = false,
|
|
|
|
},
|
|
|
|
},
|
2024-01-07 16:27:53 +01:00
|
|
|
{
|
|
|
|
"williamboman/mason.nvim",
|
|
|
|
opts = {},
|
|
|
|
},
|
2024-01-07 17:37:02 +01:00
|
|
|
{
|
|
|
|
"williamboman/mason-lspconfig.nvim",
|
|
|
|
dependencies = {
|
|
|
|
"williamboman/mason.nvim",
|
|
|
|
},
|
2024-01-07 18:19:07 +01:00
|
|
|
config = function() end,
|
2024-01-07 17:37:02 +01:00
|
|
|
},
|
2023-12-27 00:52:20 +01:00
|
|
|
{
|
|
|
|
"neovim/nvim-lspconfig",
|
2023-12-27 02:20:46 +01:00
|
|
|
dependencies = {
|
|
|
|
"hrsh7th/cmp-nvim-lsp",
|
|
|
|
},
|
2023-12-28 14:03:59 +01:00
|
|
|
init = function()
|
2024-01-07 18:19:07 +01:00
|
|
|
vim.api.nvim_create_autocmd("LspAttach", {
|
|
|
|
group = vim.api.nvim_create_augroup("UserLspConfig", {}),
|
2023-12-28 14:03:59 +01:00
|
|
|
callback = function(ev)
|
|
|
|
-- Enable completion triggered by <c-x><c-o>
|
2024-01-07 18:19:07 +01:00
|
|
|
vim.bo[ev.buf].omnifunc = "v:lua.vim.lsp.omnifunc"
|
2023-12-28 14:03:59 +01:00
|
|
|
|
|
|
|
-- Buffer local mappings.
|
|
|
|
-- See `:help vim.lsp.*` for documentation on any of the below functions
|
|
|
|
local opts = { buffer = ev.buf }
|
2024-01-07 18:19:07 +01:00
|
|
|
vim.keymap.set("n", "gD", vim.lsp.buf.declaration, opts)
|
|
|
|
vim.keymap.set("n", "gd", vim.lsp.buf.definition, opts)
|
|
|
|
vim.keymap.set("n", "gi", vim.lsp.buf.implementation, opts)
|
|
|
|
vim.keymap.set("n", "<space>wa", vim.lsp.buf.add_workspace_folder, opts)
|
|
|
|
vim.keymap.set("n", "<space>wr", vim.lsp.buf.remove_workspace_folder, opts)
|
|
|
|
vim.keymap.set("n", "<space>wl", function()
|
2023-12-28 14:03:59 +01:00
|
|
|
print(vim.inspect(vim.lsp.buf.list_workspace_folders()))
|
|
|
|
end, opts)
|
2024-01-07 18:19:07 +01:00
|
|
|
vim.keymap.set("n", "<space>D", vim.lsp.buf.type_definition, opts)
|
2024-01-09 10:02:41 +01:00
|
|
|
vim.keymap.set("n", "<space>a", vim.lsp.buf.code_action, opts)
|
2024-01-07 18:19:07 +01:00
|
|
|
vim.keymap.set("n", "<space>rn", vim.lsp.buf.rename, opts)
|
|
|
|
vim.keymap.set({ "n", "v" }, "<space>ca", vim.lsp.buf.code_action, opts)
|
|
|
|
vim.keymap.set("n", "gr", vim.lsp.buf.references, opts)
|
2024-01-08 23:17:06 +01:00
|
|
|
vim.keymap.set({ "n", "i" }, "<C-space>", vim.lsp.buf.hover, opts)
|
2024-01-07 18:19:07 +01:00
|
|
|
vim.keymap.set("n", "<space>f", function()
|
|
|
|
vim.lsp.buf.format({ async = true })
|
2023-12-28 14:03:59 +01:00
|
|
|
end, opts)
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
end,
|
2023-12-27 00:52:20 +01:00
|
|
|
config = function()
|
2024-01-07 18:19:07 +01:00
|
|
|
local capabilities = require("cmp_nvim_lsp").default_capabilities()
|
|
|
|
local lspconfig = require("lspconfig")
|
2023-12-18 09:11:00 +01:00
|
|
|
|
2024-02-29 18:55:10 +01:00
|
|
|
bind_filetype("*.wgsl", "wgsl")
|
|
|
|
|
2024-01-07 17:37:02 +01:00
|
|
|
require("mason-lspconfig").setup({
|
|
|
|
handlers = {
|
|
|
|
-- default handler
|
|
|
|
function(server_name)
|
2024-01-07 18:19:07 +01:00
|
|
|
lspconfig[server_name].setup({
|
2024-01-07 17:37:02 +01:00
|
|
|
capabilities = capabilities,
|
2024-01-07 18:19:07 +01:00
|
|
|
})
|
2024-01-07 17:37:02 +01:00
|
|
|
end,
|
|
|
|
-- overrides
|
|
|
|
["rust_analyzer"] = function()
|
2024-01-07 18:19:07 +01:00
|
|
|
require("lazy").load({ plugins = { "rust-tools.nvim" } })
|
2024-01-07 17:37:02 +01:00
|
|
|
end,
|
|
|
|
["lua_ls"] = function()
|
|
|
|
lspconfig.lua_ls.setup({
|
2024-02-29 19:06:28 +01:00
|
|
|
before_init = require("neodev.lsp").before_init,
|
2024-01-07 17:37:02 +01:00
|
|
|
capabilities = capabilities,
|
|
|
|
settings = {
|
|
|
|
Lua = {
|
|
|
|
runtime = {
|
|
|
|
-- Tell the language server which version of Lua you're using (most likely LuaJIT in the case of Neovim)
|
|
|
|
version = "LuaJIT",
|
|
|
|
},
|
|
|
|
workspace = {
|
|
|
|
-- Make the server aware of Neovim runtime files
|
|
|
|
library = vim.api.nvim_get_runtime_file("", true),
|
|
|
|
},
|
|
|
|
-- Do not send telemetry data containing a randomized but unique identifier
|
|
|
|
telemetry = {
|
|
|
|
enable = false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
end,
|
2023-12-18 09:11:00 +01:00
|
|
|
},
|
2024-01-07 18:19:07 +01:00
|
|
|
})
|
2024-01-07 17:37:02 +01:00
|
|
|
end,
|
2023-12-27 00:52:20 +01:00
|
|
|
},
|
2023-12-18 09:11:00 +01:00
|
|
|
}
|