Compare commits

...

2 Commits

Author SHA1 Message Date
Michel 9401d973d6 feat(UI): no animation on indentscope 2023-10-03 10:35:13 +02:00
Michel f94d0952f6 feat(UI): merge scheme into UI 2023-10-03 10:34:04 +02:00
2 changed files with 15 additions and 20 deletions

View File

@ -1,9 +1,21 @@
vim.o.background = "dark"
return {
{
"LazyVim/LazyVim",
opts = {
colorscheme = "lunaperche",
},
},
{
"echasnovski/mini.indentscope",
opts = function(_, opts)
opts.symbol = ""
end,
opts = {
draw = {
animation = require("mini.indentscope").gen_animation.none(),
},
symbol = "",
},
},
{

View File

@ -1,17 +0,0 @@
vim.o.background = "dark"
return {
{
"LazyVim/LazyVim",
opts = {
colorscheme = "lunaperche",
},
},
{
"folke/tokyonight.nvim",
opts = {
style = "storm",
-- transparent = true,
},
},
}