From 45bec0c2e69adc77a08c0bf71b0ad90215405f48 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Wed, 4 Dec 2024 19:50:04 -0500 Subject: [PATCH] AutoYADM commit: 2024-12-04 19:50:04 --- .config/nvim/lua/plugins/dash.lua | 28 +++---- .config/nvim/lua/plugins/mini-indentscope.lua | 74 +++++++++---------- 2 files changed, 51 insertions(+), 51 deletions(-) diff --git a/.config/nvim/lua/plugins/dash.lua b/.config/nvim/lua/plugins/dash.lua index 850851f3..bf391a72 100644 --- a/.config/nvim/lua/plugins/dash.lua +++ b/.config/nvim/lua/plugins/dash.lua @@ -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" }, }, diff --git a/.config/nvim/lua/plugins/mini-indentscope.lua b/.config/nvim/lua/plugins/mini-indentscope.lua index ca9f4be6..ba650d1f 100644 --- a/.config/nvim/lua/plugins/mini-indentscope.lua +++ b/.config/nvim/lua/plugins/mini-indentscope.lua @@ -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, }