neovim 0.11

This commit is contained in:
λmolinae 2025-05-25 15:09:40 -06:00
parent 3ec79a04d6
commit c551043634
17 changed files with 62 additions and 98 deletions

6
lsp/clangd.lua Normal file
View file

@ -0,0 +1,6 @@
---@type vim.lsp.Config
return {
cmd = { "/usr/bin/clangd" },
filetypes = { "c", "cpp", "h", "hpp" },
root_markers = { { "makefile", "Makefile" }, ".git" },
}

6
lsp/tinymist.lua Normal file
View file

@ -0,0 +1,6 @@
---@type vim.lsp.Config
return {
cmd = { "/usr/bin/tinymist" },
filetypes = { "typ" },
}