plugin cleanup

This commit is contained in:
2025-07-26 22:43:40 +02:00
parent 9082f3926a
commit 3abb3491a9
8 changed files with 72 additions and 111 deletions

View File

@@ -1,21 +0,0 @@
local options = {
auto_session_enabled = true,
auto_save_enabled = false,
auto_restore_enabled = false,
auto_session_use_git_branch = true,
log_level = "error",
auto_session_suppress_dirs = { "~/", "~/Projects", "~/Downloads", "/" },
session_lens = {
-- If load_on_setup is false, make sure you use `:SessionSearch` to open the picker as it will initialize everything first
load_on_setup = false,
theme_conf = { border = true },
previewer = false,
mappings = {
-- Mode can be a string or a table, e.g. {"i", "n"} for both insert and normal mode
delete_session = { "i", "<C-D>" },
alternate_session = { "i", "<C-S>" },
},
},
}
return options

View File

@@ -76,7 +76,6 @@ local config = {
},
{
name = "Shells",
icon = "",
highlight = { undercurl = false, sp = "grey" },
auto_close = false,
matcher = function(buf)

View File

@@ -23,7 +23,7 @@ local config = {
},
cmdline = {
enabled = true,
view = "cmdline_popup",
view = "cmdline", -- cmdline, cmdline_popup
opts = {},
---@type table<string, CmdlineFormat>
format = {
@@ -59,11 +59,11 @@ local config = {
},
},
presets = {
bottom_search = true, -- use a classic bottom cmdline for search
command_palette = true, -- position the cmdline and popupmenu together
bottom_search = true, -- use a classic bottom cmdline for search
command_palette = true, -- position the cmdline and popupmenu together
long_message_to_split = true, -- long messages will be sent to a split
inc_rename = false, -- enables an input dialog for inc-rename.nvim
lsp_doc_border = false, -- add a border to hover docs and signature help
inc_rename = false, -- enables an input dialog for inc-rename.nvim
lsp_doc_border = false, -- add a border to hover docs and signature help
},
routes = {
{ view = "cmdline", filter = { event = "msg_showmode" } },