first commit
This commit is contained in:
		
						commit
						15e643aa8e
					
				
					 41 changed files with 1623 additions and 0 deletions
				
			
		
							
								
								
									
										25
									
								
								lua/plugins/nvim-tree.lua
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								lua/plugins/nvim-tree.lua
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,25 @@ | |||
| -- File Explorer / Tree | ||||
| return { | ||||
|   -- https://github.com/nvim-tree/nvim-tree.lua | ||||
|   'nvim-tree/nvim-tree.lua', | ||||
|   dependencies = { | ||||
|     -- https://github.com/nvim-tree/nvim-web-devicons | ||||
|     'nvim-tree/nvim-web-devicons', -- Fancy icon support | ||||
|   }, | ||||
|   opts = { | ||||
|     actions = { | ||||
|       open_file = { | ||||
|         window_picker = { | ||||
|           enable = false | ||||
|         }, | ||||
|       } | ||||
|     }, | ||||
|   }, | ||||
|   config = function (_, opts) | ||||
|     -- Recommended settings to disable default netrw file explorer | ||||
|     vim.g.loaded_netrw = 1 | ||||
|     vim.g.loaded_netrwPlugin = 1 | ||||
|     require("nvim-tree").setup(opts) | ||||
|   end | ||||
| } | ||||
| 
 | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Blake Ridgway
						Blake Ridgway