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,
}

View File

@@ -1,7 +1,20 @@
return {
{
"rose-pine/neovim",
name = "rose-pine",
priority = 1000,
config = function()
local rose_pine = require("rose-pine")
rose_pine.setup({
variant = "dawn",
dark_variant = "main",
})
end,
},
{
"bluz71/vim-nightfly-colors",
name = "nightfly",
lazy = true,
priority = 1000,
},
{

View File

@@ -64,4 +64,8 @@ return {
"stevearc/dressing.nvim",
event = "VeryLazy",
},
{
"uga-rosa/ccc.nvim",
cmd = { "CccPick", "CccConvert" },
},
}

View File

@@ -0,0 +1,7 @@
return {
"nvim-pack/nvim-spectre",
name = "spectre",
dependencies = { "nvim-lua/plenary.nvim", "nvim-tree/nvim-web-devicons" },
cmd = "Spectre",
config = true,
}