File tree Expand file tree Collapse file tree 1 file changed +44
-1
lines changed
Expand file tree Collapse file tree 1 file changed +44
-1
lines changed Original file line number Diff line number Diff line change 22-- I promise not to create any merge conflicts in this directory :)
33--
44-- See the kickstart.nvim README for more information
5- return {}
5+ return {
6+ -- Other plugins...
7+
8+ -- Add nvim-tree plugin
9+ {
10+ ' nvim-tree/nvim-tree.lua' ,
11+ dependencies = { ' nvim-tree/nvim-web-devicons' }, -- For file icons
12+ config = function ()
13+ require (' nvim-tree' ).setup {
14+ disable_netrw = true , -- Disable netrw
15+ hijack_netrw = true , -- Hijack netrw for nvim-tree
16+ view = {
17+ side = ' left' ,
18+ width = 30 ,
19+ },
20+ renderer = {
21+ icons = {
22+ show = {
23+ file = true ,
24+ folder = true ,
25+ folder_arrow = true ,
26+ git = true ,
27+ },
28+ },
29+ },
30+ diagnostics = {
31+ enable = true , -- Show diagnostic info
32+ icons = {
33+ hint = ' ' ,
34+ info = ' ' ,
35+ warning = ' ' ,
36+ error = ' ' ,
37+ },
38+ },
39+ git = {
40+ enable = true , -- Show git status
41+ },
42+ filters = {
43+ dotfiles = false , -- Show hidden files
44+ },
45+ }
46+ end ,
47+ },
48+ }
You can’t perform that action at this time.
0 commit comments