From a7274b3a763b3cc86a404793c586b4df4c34f051 Mon Sep 17 00:00:00 2001 From: Kert Kukk Date: Mon, 6 Jan 2025 21:58:44 +0200 Subject: [PATCH] Add oil.nvim plugin with optional dependencies --- init.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/init.lua b/init.lua index 2013306d..1a18d881 100644 --- a/init.lua +++ b/init.lua @@ -832,6 +832,15 @@ require('lazy').setup({ return keys 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). require 'kickstart.plugins.debug', require 'kickstart.plugins.indent_line',