From a9e26f3040e9996a408f6af4c4b056af2530dd54 Mon Sep 17 00:00:00 2001 From: Henry Denny Date: Fri, 26 Jan 2024 17:45:02 +0000 Subject: [PATCH] Change postion of file explorer to floating. --- lua/custom/plugins/file-browser.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/custom/plugins/file-browser.lua b/lua/custom/plugins/file-browser.lua index 57a20212..7e443038 100644 --- a/lua/custom/plugins/file-browser.lua +++ b/lua/custom/plugins/file-browser.lua @@ -11,6 +11,9 @@ return config = function () vim.keymap.set('n', 'o', ':Neotree', { desc = 'Open file browser' }) require("neo-tree").setup({ + window = { + position = "float", + }, -- Neotree config }) end