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.

15 lines
339 B

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