Fix statusline and neo-tree at last
This commit is contained in:
parent
acc9784663
commit
e4a804a028
@ -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,
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@ -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
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user