From f84a9c082f41ea5b4b52eac3aadf7baa4b31dcee Mon Sep 17 00:00:00 2001 From: pika Date: Tue, 27 Aug 2024 17:56:46 +0200 Subject: [PATCH] option removed which caused bugs --- lua/pika/plugins/lf.lua | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lua/pika/plugins/lf.lua b/lua/pika/plugins/lf.lua index e4ee215..361cc5b 100644 --- a/lua/pika/plugins/lf.lua +++ b/lua/pika/plugins/lf.lua @@ -18,13 +18,11 @@ return { winblend = 10, -- psuedotransparency level direction = "float", -- window type: float horizontal vertical border = "shadow", -- border kind: single double shadow curved - -- height = fn.float2nr(fn.round(0.75 * o.lines)), -- height of the *floating* window - -- width = fn.float2nr(fn.round(0.75 * o.columns)), -- width of the *floating* window escape_quit = true, -- map escape to the quit command (so it doesn't go into a meta normal mode) focus_on_open = true, -- focus the current file when opening Lf (experimental) mappings = true, -- whether terminal buffer mapping is enabled - tmux = true, -- tmux statusline can be disabled on opening of Lf - default_file_manager = false, -- make lf default file manager + tmux = false, -- tmux statusline can be disabled on opening of Lf + default_file_manager = true, -- make lf default file manager disable_netrw_warning = true, -- don't display a message when opening a directory with `default_file_manager` as true })