master #1

Open
oli wants to merge 912 commits from master into lua
Showing only changes of commit 81f8b66de4 - Show all commits

View File

@@ -213,5 +213,14 @@ return {
if vim.loop.os_uname().sysname == 'Windows_NT' then
vim.env.HOME = home
end
vim.api.nvim_create_autocmd('BufEnter', {
callback = function()
if vim.opt.foldmethod:get() == 'expr' then
vim.schedule(function()
vim.opt.foldmethod = 'expr'
end)
end
end,
})
end
}