1
0

Compare commits

..

No commits in common. "224ead3156ce837fe017c8dee624f87c8500b511" and "fab1f370f3cff5d7c789801bc01635fafd544d35" have entirely different histories.

2 changed files with 1 additions and 2 deletions

View File

@ -14,7 +14,6 @@ local function get_options(server_name)
}
end
require("mason").setup()
require("mason-lspconfig").setup()
require("mason-lspconfig").setup_handlers{
function (server_name) -- default handler (optional)

View File

@ -1,5 +1,5 @@
local ts = vim.treesitter
local query = ts.query.parse("c", [[
local query = ts.parse_query("c", [[
(preproc_function_def value: (preproc_arg) @macro_def)
(preproc_def value: (preproc_arg) @macro_def)
]])