AutoYADM commit: 2024-12-04 19:50:04

This commit is contained in:
Daniel Fichtinger 2024-12-04 19:50:04 -05:00
parent 66acc70bfc
commit 45bec0c2e6
2 changed files with 51 additions and 51 deletions

View file

@ -46,7 +46,7 @@ return {
},
{ icon = "", key = "s", desc = "Restore Session", section = "session" },
-- { icon = "󰒲 ", key = "L", desc = "Lazy", action = ":Lazy", enabled = package.loaded.lazy ~= nil },
-- { icon = " ", key = "q", desc = "Quit", action = ":qa" },
{ icon = "", key = "q", desc = "Quit", action = ":qa" },
},
-- Used by the `header` section
-- header = [[
@ -118,19 +118,19 @@ return {
sections = {
{ section = "header", gap = 0, padding = 0 },
{ text = get_haiku(), align = "center", gap = 0, padding = 0 },
{
-- pane = 2,
section = "terminal",
cmd = "colorscript -e 36",
-- hl = "header",
-- height = 30,
random = 10,
indent = 11,
gap = 0,
padding = 0,
-- padding = 1,
},
-- { section = "keys", gap = 1, padding = 1 },
-- {
-- -- pane = 2,
-- section = "terminal",
-- cmd = "colorscript -e 36",
-- -- hl = "header",
-- -- height = 30,
-- random = 10,
-- indent = 11,
-- gap = 0,
-- padding = 0,
-- -- padding = 1,
-- },
{ section = "keys", gap = 1, padding = 1 },
{ section = "startup", gap = 0, padding = 0 },
-- { section = "footer" },
},

View file

@ -1,39 +1,39 @@
return {
"echasnovski/mini.indentscope",
version = false, -- wait till new 0.7.0 release to put it back on semver
event = "LazyFile",
opts = {
-- symbol = "▏",
symbol = "",
options = {
try_as_border = true,
draw = {
animation = require("mini.indentscope").gen_animation.none(),
},
},
},
init = function()
vim.api.nvim_create_autocmd("FileType", {
pattern = {
"Trouble",
"alpha",
"dashboard",
"fzf",
"help",
"lazy",
"mason",
"neo-tree",
"notify",
"snacks_dashboard",
"snacks_notif",
"snacks_terminal",
"snacks_win",
"toggleterm",
"trouble",
},
callback = function()
vim.b.miniindentscope_disable = true
end,
})
end,
-- "echasnovski/mini.indentscope",
-- version = false, -- wait till new 0.7.0 release to put it back on semver
-- event = "LazyFile",
-- opts = {
-- -- symbol = "▏",
-- symbol = "│",
-- options = {
-- try_as_border = true,
-- draw = {
-- animation = require("mini.indentscope").gen_animation.none(),
-- },
-- },
-- },
-- init = function()
-- vim.api.nvim_create_autocmd("FileType", {
-- pattern = {
-- "Trouble",
-- "alpha",
-- "dashboard",
-- "fzf",
-- "help",
-- "lazy",
-- "mason",
-- "neo-tree",
-- "notify",
-- "snacks_dashboard",
-- "snacks_notif",
-- "snacks_terminal",
-- "snacks_win",
-- "toggleterm",
-- "trouble",
-- },
-- callback = function()
-- vim.b.miniindentscope_disable = true
-- end,
-- })
-- end,
}