๐ฟ quickfile
December 15, 2024 ยท View on GitHub
When doing nvim somefile.txt, it will render the file as quickly as possible,
before loading your plugins.
๐ฆ Setup
-- lazy.nvim
{
"folke/snacks.nvim",
---@type snacks.Config
opts = {
quickfile = {
-- your quickfile configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
}
}
}
โ๏ธ Config
---@class snacks.quickfile.Config
{
-- any treesitter langs to exclude
exclude = { "latex" },
}