remove lazygit utils

(using snacks.lazygit instead)
This commit is contained in:
2025-02-08 20:05:35 -05:00
parent 0ec917ffeb
commit 191f0cb798
+8 -8
View File
@@ -7,14 +7,14 @@ local autogrp = vim.api.nvim_create_augroup
local autocmd = vim.api.nvim_create_autocmd
-- LazyGit root detection
if pcall(require, 'lazygit.utils') then
autocmd('BufEnter', {
pattern = '*',
callback = function()
require('lazygit.utils').project_root_dir()
end,
})
end
-- if pcall(require, 'lazygit.utils') then
-- autocmd('BufEnter', {
-- pattern = '*',
-- callback = function()
-- require('lazygit.utils').project_root_dir()
-- end,
-- })
-- end
-- ━━━━━━━━━━━━━━━━━━━━━━━ Set up Qalc keymappings ━━━━━━━━━━━━━━━━━━━━━━━
if pcall(require, 'qalc') then