@@ -15,8 +15,8 @@ will be a new branch that you can opt into, when it is a good time for you.
15
15
16
16
See [ What is a Breaking Change?] ( #what-is-a-breaking-change ) for details.
17
17
18
- See [ Changelog 2 .0] ( https://github.com/nvim-neo-tree/neo-tree.nvim/wiki/Changelog#20 )
19
- for breaking changes and deprecations in 2 .0.
18
+ See [ Changelog 3 .0] ( https://github.com/nvim-neo-tree/neo-tree.nvim/wiki/Changelog#30 )
19
+ for breaking changes and deprecations in 3 .0.
20
20
21
21
22
22
### User Experience GOOD :slightly_smiling_face : :thumbsup :
@@ -43,11 +43,24 @@ so we can fix it.
43
43
44
44
## Minimal Quickstart
45
45
46
+ #### Minimal Example for Lazy:
47
+ ``` lua
48
+ {
49
+ " nvim-neo-tree/neo-tree.nvim" ,
50
+ branch = " v3.x" ,
51
+ requires = {
52
+ " nvim-lua/plenary.nvim" ,
53
+ " nvim-tree/nvim-web-devicons" , -- not strictly required, but recommended
54
+ " MunifTanjim/nui.nvim" ,
55
+ }
56
+ }
57
+ ```
58
+
46
59
#### Minimal Example for Packer:
47
60
``` lua
48
61
use {
49
62
" nvim-neo-tree/neo-tree.nvim" ,
50
- branch = " v2 .x" ,
63
+ branch = " v3 .x" ,
51
64
requires = {
52
65
" nvim-lua/plenary.nvim" ,
53
66
" nvim-tree/nvim-web-devicons" , -- not strictly required, but recommended
@@ -71,7 +84,7 @@ Press `?` in the Neo-tree window to view the list of mappings.
71
84
``` lua
72
85
use {
73
86
" nvim-neo-tree/neo-tree.nvim" ,
74
- branch = " v2 .x" ,
87
+ branch = " v3 .x" ,
75
88
requires = {
76
89
" nvim-lua/plenary.nvim" ,
77
90
" nvim-tree/nvim-web-devicons" , -- not strictly required, but recommended
@@ -109,8 +122,6 @@ use {
109
122
{text = " " , texthl = " DiagnosticSignInfo" })
110
123
vim .fn .sign_define (" DiagnosticSignHint" ,
111
124
{text = " " , texthl = " DiagnosticSignHint" })
112
- -- NOTE: this is changed from v1.x, which used the old style of highlight groups
113
- -- in the form "LspDiagnosticsSignWarning"
114
125
115
126
require (" neo-tree" ).setup ({
116
127
close_if_last_window = false , -- Close Neo-tree if it is the last window left in the tab
@@ -587,7 +598,10 @@ add `"document_symbols"` to `config.sources` and open it with the command
587
598
:Neotree document_symbols
588
599
```
589
600
601
+ ### External Sources
590
602
603
+ There are more sources available as extensions that are managed outside of this repository. See the
604
+ [ wiki] ( https://github.com/nvim-neo-tree/neo-tree.nvim/wiki/External-Sources ) for me information.
591
605
592
606
### Source Selector
593
607
![ Neo-tree source selector] ( https://github.com/nvim-neo-tree/resources/raw/main/images/Neo-tree-source-selector.png )
@@ -710,6 +724,22 @@ Contributions are encouraged. Please see [CONTRIBUTING](CONTRIBUTING.md) for mor
710
724
711
725
## Acknowledgements
712
726
727
+ ### Maintainers
728
+
729
+ First and foremost, this project is a community endeavor and would not survive without the constant stream of features
730
+ and bug fixes that comes from that community. There have been many valued contributors, but a few have stepped up to
731
+ become maintainers that generously donate their time to guide the project, help out others, and manage the issues. The
732
+ current list of maintainers are:
733
+
734
+ (in alphabetical order)
735
+
736
+ - @cseickel
737
+ - @miversen33
738
+ - @nhat-vo
739
+ - @pysan3
740
+
741
+ ### Other Projects
742
+
713
743
This project relies upon these two excellent libraries:
714
744
- [ nui.nvim] ( https://github.com/MunifTanjim/nui.nvim ) for all UI components, including the tree!
715
745
- [ plenary.nvim] ( https://github.com/nvim-lua/plenary.nvim ) for backend utilities, such as scanning the filesystem.
0 commit comments