Added spectre, cloak and ccc plugins

Added rose pine theme
This commit is contained in:
2023-09-09 23:51:45 +02:00
parent 66ecdab54a
commit c245a4c50e
4 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
return {
"laytan/cloak.nvim",
config = function()
local cloak = require("cloak")
cloak.setup({
enabled = true,
cloak_character = "*",
highlight_group = "Comment",
cloak_length = nil,
try_all_patterns = true,
patterns = {
{
file_pattern = ".env*",
cloak_pattern = "=.+",
replace = nil,
},
},
})
end,
}