From f8807e58fa115750db9047a3e303bb99e3f6cf7e Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Wed, 28 Aug 2024 19:13:52 +0200 Subject: [PATCH] feat(nvim): add plugin configuration for neo-tree to move drawer to the right --- config/nvim/lua/plugins/neo-tree.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 config/nvim/lua/plugins/neo-tree.lua diff --git a/config/nvim/lua/plugins/neo-tree.lua b/config/nvim/lua/plugins/neo-tree.lua new file mode 100644 index 0000000..218053e --- /dev/null +++ b/config/nvim/lua/plugins/neo-tree.lua @@ -0,0 +1,17 @@ +-- Neo-Tree +-- Neovim plugin to manage the file system and other tree like structures. +return { + "nvim-neo-tree/neo-tree.nvim", + opts = { + sources = { "filesystem", "buffers", "git_status" }, + open_files_do_not_replace_types = { "terminal", "Trouble", "trouble", "qf", "Outline" }, + filesystem = { + bind_to_cwd = false, + follow_current_file = { enabled = true }, + use_libuv_file_watcher = true, + }, + window = { + position = "right", + }, + }, +}