onetool 0.0.1-alpha.5

The last LLM tool you'll every need
Documentation
-- Local project config

-- Guard against multiple loads (important)
if vim.g.project_config_loaded then
	return
end
vim.g.project_config_loaded = true

vim.lsp.config("rust_analyzer", {
	settings = {
		["rust-analyzer"] = {
			cargo = {
				features = "all",
			},
			checkOnSave = true,
		},
	},
})

vim.lsp.enable("rust_analyzer")