Init config
This commit is contained in:
parent
f5c9fe8e15
commit
94fb9a2255
6 changed files with 182 additions and 17 deletions
17
lua/custom/plugins/neo-tree.lua
Normal file
17
lua/custom/plugins/neo-tree.lua
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
return {
|
||||
'nvim-neo-tree/neo-tree.nvim',
|
||||
branch = 'v3.x',
|
||||
dependencies = {
|
||||
'nvim-lua/plenary.nvim',
|
||||
'nvim-tree/nvim-web-devicons', -- not strictly required, but recommended
|
||||
'MunifTanjim/nui.nvim',
|
||||
-- "3rd/image.nvim", -- Optional image support in preview window: See `# Preview Mode` for more information
|
||||
},
|
||||
config = function()
|
||||
require('neo-tree').setup {
|
||||
window = {
|
||||
position = 'float',
|
||||
},
|
||||
}
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue