initialize oil plugin
This commit is contained in:
		
							parent
							
								
									c033a705ce
								
							
						
					
					
						commit
						c1610371bb
					
				
							
								
								
									
										4
									
								
								init.lua
								
								
								
								
							
							
						
						
									
										4
									
								
								init.lua
								
								
								
								
							| 
						 | 
					@ -552,6 +552,10 @@ cmp.setup {
 | 
				
			||||||
    { name = 'path' },
 | 
					    { name = 'path' },
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					-- Configure Oil 
 | 
				
			||||||
 | 
					require('oil').setup()
 | 
				
			||||||
 | 
					vim.keymap.set('n', '<leader>-', '<CMD>Oil --float<CR>', { desc = 'Open current directory' })
 | 
				
			||||||
 | 
					
 | 
				
			||||||
-- Configure Theme
 | 
					-- Configure Theme
 | 
				
			||||||
require('catppuccin').setup({
 | 
					require('catppuccin').setup({
 | 
				
			||||||
	flavour = 'macchiato',
 | 
						flavour = 'macchiato',
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -18,6 +18,7 @@
 | 
				
			||||||
  "nvim-lspconfig": { "branch": "master", "commit": "84f2dd42efffa20d505ac44c78568d778ca7e0a1" },
 | 
					  "nvim-lspconfig": { "branch": "master", "commit": "84f2dd42efffa20d505ac44c78568d778ca7e0a1" },
 | 
				
			||||||
  "nvim-treesitter": { "branch": "master", "commit": "ab818bf5a2ee21515ade9afcf428e98056b6197b" },
 | 
					  "nvim-treesitter": { "branch": "master", "commit": "ab818bf5a2ee21515ade9afcf428e98056b6197b" },
 | 
				
			||||||
  "nvim-treesitter-textobjects": { "branch": "master", "commit": "ec1c5bdb3d87ac971749fa6c7dbc2b14884f1f6a" },
 | 
					  "nvim-treesitter-textobjects": { "branch": "master", "commit": "ec1c5bdb3d87ac971749fa6c7dbc2b14884f1f6a" },
 | 
				
			||||||
 | 
					  "oil.nvim": { "branch": "master", "commit": "24027ed8d7f3ee5c38cfd713915e2e16d89e79b3" },
 | 
				
			||||||
  "onedark.nvim": { "branch": "master", "commit": "c5476a091b0f1b4e853db91c91ff941f848a1cdd" },
 | 
					  "onedark.nvim": { "branch": "master", "commit": "c5476a091b0f1b4e853db91c91ff941f848a1cdd" },
 | 
				
			||||||
  "plenary.nvim": { "branch": "master", "commit": "55d9fe89e33efd26f532ef20223e5f9430c8b0c0" },
 | 
					  "plenary.nvim": { "branch": "master", "commit": "55d9fe89e33efd26f532ef20223e5f9430c8b0c0" },
 | 
				
			||||||
  "telescope-fzf-native.nvim": { "branch": "main", "commit": "6c921ca12321edaa773e324ef64ea301a1d0da62" },
 | 
					  "telescope-fzf-native.nvim": { "branch": "main", "commit": "6c921ca12321edaa773e324ef64ea301a1d0da62" },
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,4 +1,6 @@
 | 
				
			||||||
return {
 | 
					return {
 | 
				
			||||||
 | 
						-- File Browser
 | 
				
			||||||
 | 
						{ 'stevearc/oil.nvim' },
 | 
				
			||||||
	-- Theme
 | 
						-- Theme
 | 
				
			||||||
	{ 'catppuccin/nvim', name='catppuccin', priority = 1000 },
 | 
						{ 'catppuccin/nvim', name='catppuccin', priority = 1000 },
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue