diff --git a/nvim/lua/config/lazy/21-statusline.lua b/nvim/lua/config/lazy/21-statusline.lua index ce7f7a9..f157579 100644 --- a/nvim/lua/config/lazy/21-statusline.lua +++ b/nvim/lua/config/lazy/21-statusline.lua @@ -4,8 +4,9 @@ return { event = "VimEnter", opts = { extensions = { "neo-tree", "lazy", "toggleterm" }, + options = { + section_separators = { left = "", right = "" }, + component_separators = { left = "", right = "" }, + }, }, - -- config = function() - -- require("lualine").setup({ options = { theme = "catppuccin" } }) - -- end, } diff --git a/nvim/lua/config/lazy/32-tree.lua b/nvim/lua/config/lazy/32-tree.lua index 3ed6748..6ca77da 100644 --- a/nvim/lua/config/lazy/32-tree.lua +++ b/nvim/lua/config/lazy/32-tree.lua @@ -23,6 +23,11 @@ return { }, }, use_libuv_file_watcher = true, + window = { + mappings = { + ["f"] = "noop", + }, + }, }, default_component_configs = { git_status = { @@ -37,10 +42,11 @@ return { conflict = "", }, }, - window = { - mappings = { - [""] = { "toggle_node" }, - }, + }, + window = { + mappings = { + [""] = "toggle_node", + [""] = "noop", }, }, }, diff --git a/nvim/lua/config/settings.lua b/nvim/lua/config/settings.lua index 83ad890..f0b7480 100644 --- a/nvim/lua/config/settings.lua +++ b/nvim/lua/config/settings.lua @@ -27,4 +27,3 @@ vim.opt.cursorline = true vim.opt.scrolloff = 5 vim.opt.confirm = true vim.opt.virtualedit = "block" -vim.opt.autoread = true