Fix statusline and neo-tree at last

This commit is contained in:
Ben Kreeger 2025-06-23 16:42:32 -05:00
parent acc9784663
commit e4a804a028
Signed by: kreeger
GPG Key ID: 1F33DAF2F49E4046
3 changed files with 14 additions and 8 deletions

View File

@ -4,8 +4,9 @@ return {
event = "VimEnter", event = "VimEnter",
opts = { opts = {
extensions = { "neo-tree", "lazy", "toggleterm" }, extensions = { "neo-tree", "lazy", "toggleterm" },
options = {
section_separators = { left = "", right = "" },
component_separators = { left = "", right = "" },
},
}, },
-- config = function()
-- require("lualine").setup({ options = { theme = "catppuccin" } })
-- end,
} }

View File

@ -23,6 +23,11 @@ return {
}, },
}, },
use_libuv_file_watcher = true, use_libuv_file_watcher = true,
window = {
mappings = {
["f"] = "noop",
},
},
}, },
default_component_configs = { default_component_configs = {
git_status = { git_status = {
@ -37,10 +42,11 @@ return {
conflict = "", conflict = "",
}, },
}, },
window = { },
mappings = { window = {
["<tab>"] = { "toggle_node" }, mappings = {
}, ["<tab>"] = "toggle_node",
["<space>"] = "noop",
}, },
}, },
}, },

View File

@ -27,4 +27,3 @@ vim.opt.cursorline = true
vim.opt.scrolloff = 5 vim.opt.scrolloff = 5
vim.opt.confirm = true vim.opt.confirm = true
vim.opt.virtualedit = "block" vim.opt.virtualedit = "block"
vim.opt.autoread = true