You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
264 B

  1. return {
  2. "laytan/cloak.nvim",
  3. event = { "BufReadPre", "BufNewFile" },
  4. config = function()
  5. require("cloak").setup({
  6. enabled = true,
  7. patterns = {
  8. {
  9. file_pattern = ".env*",
  10. cloak_pattern = "=.+",
  11. replace = "*",
  12. },
  13. },
  14. })
  15. end,
  16. }