Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 534 Bytes

quickfile.md

File metadata and controls

32 lines (26 loc) · 534 Bytes

🍿 quickfile

When doing nvim somefile.txt, it will render the file as quickly as possible, before loading your plugins.

📦 Setup

-- lazy.nvim
{
  "folke/snacks.nvim",
  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" },
}