Initial Commit

This commit is contained in:
Maurice Grönwoldt 2025-07-30 16:05:16 +02:00
commit 18da9560c6
No known key found for this signature in database
GPG key ID: FBB005FE74FEF996
31 changed files with 769 additions and 0 deletions

6
lua/lsp/clangd.lua Normal file
View file

@ -0,0 +1,6 @@
return {
cmd = {
"clangd",
"-experimental-modules-support",
},
}

5
lua/lsp/init.lua Normal file
View file

@ -0,0 +1,5 @@
return {
lua_ls = require("lsp.lua"),
jdtls = require("lsp.java"),
clangd = require("lsp.clangd"),
}

2
lua/lsp/java.lua Normal file
View file

@ -0,0 +1,2 @@
return {
}

7
lua/lsp/lua.lua Normal file
View file

@ -0,0 +1,7 @@
return {
Lua = {
diagnostics = {
globals = { "vim", "describe", "it", "before_each", "after_each", "packer_plugins", "MiniTest", "Snacks" },
},
},
}