Added spectre, cloak and ccc plugins
Added rose pine theme
This commit is contained in:
21
lua/taken/plugins/cloak.lua
Normal file
21
lua/taken/plugins/cloak.lua
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user