24 lines
		
	
	
		
			482 B
		
	
	
	
		
			Lua
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			482 B
		
	
	
	
		
			Lua
		
	
	
	
-- You can add your own plugins here or in other files in this directory!
 | 
						|
--  I promise not to create any merge conflicts in this directory :)
 | 
						|
--
 | 
						|
-- See the kickstart.nvim README for more information
 | 
						|
return {
 | 
						|
  {
 | 
						|
    'nvim-tree/nvim-tree.lua',
 | 
						|
    opts = {
 | 
						|
      sort = {
 | 
						|
        sorter = 'case_sensitive',
 | 
						|
      },
 | 
						|
      view = {
 | 
						|
        width = 30,
 | 
						|
      },
 | 
						|
      renderer = {
 | 
						|
        group_empty = true,
 | 
						|
      },
 | 
						|
      filters = {
 | 
						|
        dotfiles = true,
 | 
						|
      },
 | 
						|
    },
 | 
						|
  },
 | 
						|
}
 |