fix(quickfile): don't load when bigfile detected. Fixes #116

This commit is contained in:
Folke Lemaitre 2024-11-20 09:39:07 +01:00
parent 198e4b95d5
commit 978424ce28
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -15,6 +15,9 @@ function M.setup()
if vim.v.vim_did_enter == 1 then
return
end
if vim.bo.filetype == "bigfile" then
return
end
local buf = vim.api.nvim_get_current_buf()