update neovim config AGAIN :(

This commit is contained in:
2025-09-13 19:18:20 -05:00
parent ec8e0906be
commit bbb7ce21bc
31 changed files with 1409 additions and 1349 deletions

View File

@@ -1,18 +1,20 @@
vim.pack.add({
{ src = 'https://github.com/laytan/cloak.nvim' },
})
require'cloak'.setup({
enabled = false,
cloak_character = "",
highlight_group = "Comment",
patterns = {
{
file_pattern = {
'.env*',
'wrangler.toml',
'.dev.vars',
return {
'laytan/cloak.nvim',
config = function()
require'cloak'.setup({
enabled = false,
cloak_character = "",
highlight_group = "Comment",
patterns = {
{
file_pattern = {
'.env*',
'wrangler.toml',
'.dev.vars',
},
cloak_pattern = "=.+"
},
},
cloak_pattern = "=.+"
},
},
})
})
end,
}