From 1e8f14bf35f5658671e5ebc6b4b33c3a160eda87 Mon Sep 17 00:00:00 2001 From: smashblu Date: Fri, 4 Oct 2024 16:19:42 -0700 Subject: [PATCH] Add oil.nvim plugin, no config --- lua/custom/plugins/oil.lua | 11 +++++++++++ lua/lazy-plugins.lua | 2 ++ 2 files changed, 13 insertions(+) create mode 100644 lua/custom/plugins/oil.lua diff --git a/lua/custom/plugins/oil.lua b/lua/custom/plugins/oil.lua new file mode 100644 index 00000000..2bc671ea --- /dev/null +++ b/lua/custom/plugins/oil.lua @@ -0,0 +1,11 @@ +return { + { + '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 + }, +} diff --git a/lua/lazy-plugins.lua b/lua/lazy-plugins.lua index 5f3a67aa..d5a0f117 100644 --- a/lua/lazy-plugins.lua +++ b/lua/lazy-plugins.lua @@ -49,6 +49,8 @@ require('lazy').setup({ require 'custom/plugins/typescript-tools', + require 'custom/plugins/oil', + -- require 'custom/plugins/markview', -- The following two comments only work if you have downloaded the kickstart repo, not just copy pasted the