mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
feat(nvim): add plugin configuration for neo-tree to move drawer to the right
This commit is contained in:
17
config/nvim/lua/plugins/neo-tree.lua
Normal file
17
config/nvim/lua/plugins/neo-tree.lua
Normal file
@@ -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",
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user