This commit is contained in:
λmolinae 2025-05-21 00:43:18 -06:00
parent 25ef741b37
commit 06a45b954d
7 changed files with 37 additions and 73 deletions

View file

@ -0,0 +1,16 @@
return {
bigfile = { enabled = false },
dashboard = { enabled = true },
explorer = { enabled = false },
git = { enabled = true },
indent = { enabled = true },
input = { enabled = false },
notifier = { enabled = false },
quickfile = { enabled = false },
scope = { enabled = false },
scroll = { enabled = false },
statuscolumn = { enabled = false },
terminal = { enabled = true },
toggle = { enabled = true },
words = { enabled = false },
}

View file

@ -4,18 +4,8 @@ return {
priority = 1000,
lazy = false,
---@type snacks.Config
opts = {
bigfile = { enabled = false },
dashboard = { enabled = true },
explorer = { enabled = false },
indent = { enabled = true },
input = { enabled = false },
notifier = { enabled = false },
quickfile = { enabled = false },
scope = { enabled = false },
scroll = { enabled = true },
statuscolumn = { enabled = false },
words = { enabled = false },
}
opts = function()
return require "config.plugins.snacks"
end,
}
}

14
lua/plugins/themes.lua Normal file
View file

@ -0,0 +1,14 @@
return {
{
"amolinae06/pywal16.nvim",
opts = {},
},
{
"folke/tokyonight.nvim",
opts = {
style = "night",
transparent = false,
terminal_colors = true,
}
}
}

View file

@ -1,12 +1,4 @@
return {
{
"amolinae06/pywal16.nvim",
opts = {},
},
{
"folke/tokyonight.nvim",
opts = {}
},
{
"norcalli/nvim-colorizer.lua",
opts = { 'css'; 'javascript'; html = {mode = 'foreground';} },