fix(nvim): use manual foldmethod in Neogit fts

This commit is contained in:
Price Hiller 2024-02-24 15:34:32 -06:00
parent 4c875cb46c
commit 987e89c6d4
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -32,6 +32,7 @@ return {
pattern = "*Neogit*",
callback = function()
vim.opt_local.list = false
vim.opt_local.foldmethod = "manual"
end,
})