From c9602b5acc9864e9fa4736def528e69eae509751 Mon Sep 17 00:00:00 2001 From: Felix Suchert Date: Tue, 6 Jun 2023 21:07:19 +0200 Subject: [PATCH] Add oil.nvim --- tycho/nvim/lua/plugins.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tycho/nvim/lua/plugins.lua b/tycho/nvim/lua/plugins.lua index f4521ec..3275b13 100644 --- a/tycho/nvim/lua/plugins.lua +++ b/tycho/nvim/lua/plugins.lua @@ -15,6 +15,12 @@ return require('packer').startup(function(use) use 'scrooloose/nerdcommenter' use 'sbdchd/neoformat' + use { + 'stevearc/oil.nvim', + requires = 'nvim-tree/nvim-web-devicons', + config = function() require('oil').setup() end + } + -- fuzzy file finder use { 'junegunn/fzf', run = function() vim.fn['fzf#install'](0) end } use 'junegunn/fzf.vim'