added rust stuff

This commit is contained in:
Maximilian Wagner 2024-11-26 13:33:39 +01:00
parent a563fb0209
commit af12769479
2 changed files with 10 additions and 0 deletions

View File

@ -84,6 +84,10 @@ lspconfig.marksman.setup {}
lspconfig.html.setup {}
-- Golang
lspconfig.gopls.setup {}
-- Rust (setup done by rustaceanvim)
-- lspconfig.rust_analyzer.setup {}
-- WebDev
lspconfig.biome.setup {}
local load_mappings = function(section)

View File

@ -255,6 +255,12 @@ local default_plugins = {
end,
},
{
'mrcjkb/rustaceanvim',
version = '^5', -- Recommended
lazy = false, -- This plugin is already lazy
},
{
"mfussenegger/nvim-dap",