Add oil.nvim plugin with optional dependencies
This commit is contained in:
parent
4786a601e2
commit
a7274b3a76
9
init.lua
9
init.lua
|
|
@ -832,6 +832,15 @@ require('lazy').setup({
|
||||||
return keys
|
return keys
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'stevearc/oil.nvim',
|
||||||
|
---@module 'oil'
|
||||||
|
---@type oil.SetupOpts
|
||||||
|
opts = {},
|
||||||
|
-- Optional dependencies
|
||||||
|
dependencies = { { 'echasnovski/mini.icons', opts = {} } },
|
||||||
|
-- dependencies = { "nvim-tree/nvim-web-devicons" }, -- use if prefer nvim-web-devicons
|
||||||
|
},
|
||||||
-- If you downloaded the kickstart repo, uncomment lines below to enable example plugins (restart nvim).
|
-- If you downloaded the kickstart repo, uncomment lines below to enable example plugins (restart nvim).
|
||||||
require 'kickstart.plugins.debug',
|
require 'kickstart.plugins.debug',
|
||||||
require 'kickstart.plugins.indent_line',
|
require 'kickstart.plugins.indent_line',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue