Add neo-tree extension (#672)

* Add neo-tree extension

* Update README.md
This commit is contained in:
Hennadii Chernyshchyk 2022-05-02 05:15:53 +03:00 committed by GitHub
parent 030eb62bc4
commit 19721f6e4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View File

@ -741,6 +741,7 @@ extensions = {'quickfix'}
- fugitive - fugitive
- fzf - fzf
- nerdtree - nerdtree
- neo-tree
- nvim-tree - nvim-tree
- quickfix - quickfix
- symbols-outline - symbols-outline

View File

@ -0,0 +1,11 @@
-- Copyright (c) 2020-2021 hoob3rt
-- MIT license, see LICENSE for more details.
local nerdtree = require('lualine.extensions.nerdtree')
local M = {}
M.sections = vim.deepcopy(nerdtree.sections)
M.filetypes = { 'neo-tree' }
return M