master
Bryan 2024-09-16 23:43:22 -06:00
parent 29f7169490
commit 57cedc942d
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ local function setup()
vim.api.nvim_create_autocmd({ "VimEnter" }, { vim.api.nvim_create_autocmd({ "VimEnter" }, {
group = auto_group_name, group = auto_group_name,
callback = function(_) callback = function(_)
if api.find_project_dir(true) ~ nil then if api.find_project_dir(true) ~= nil then
api.add_current_project({ show_duplicate_hints = false }) api.add_current_project({ show_duplicate_hints = false })
end end
end, end,