18 lines
552 B
Lua
18 lines
552 B
Lua
require("sidebar-nvim").setup({
|
|
disable_default_keybindings = 0,
|
|
bindings = nil,
|
|
open = true,
|
|
side = "right",
|
|
initial_width = 35,
|
|
hide_statusline = false,
|
|
update_interval = 1000,
|
|
sections = { "git", "diagnostics", "symbols" },
|
|
section_separator = { "-----" },
|
|
section_title_separator = { "" },
|
|
containers = {
|
|
attach_shell = "/bin/sh", show_all = true, interval = 5000,
|
|
},
|
|
datetime = { format = "%a %b %d, %H:%M", clocks = { { name = "local" } } },
|
|
todos = { ignored_paths = { "~" } },
|
|
})
|