Updating git stuff

This commit is contained in:
RingOfStorms (Joshua Bell) 2023-08-01 14:59:35 -05:00
parent b1954a147a
commit bbe1cbdd2d
5 changed files with 119 additions and 48 deletions

View file

@ -33,11 +33,11 @@ vim.api.nvim_create_autocmd("BufRead", {
end,
})
vim.api.nvim_create_autocmd({"BufEnter", "BufWinEnter"}, {
callback = function ()
if vim.bo.filetype == 'neo-tree' then
vim.api.nvim_command("stopinsert")
end
vim.api.nvim_create_autocmd({ "BufEnter", "BufWinEnter" }, {
callback = function()
-- if vim.bo.filetype == 'neo-tree' then
vim.api.nvim_command("stopinsert")
-- end
end
})