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

View file

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