From b86fd44312b6cdaa1e67699d0e3d835bc16c1e7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Sun, 21 May 2023 21:53:16 +0200 Subject: [PATCH] feat: remove nvim-tree in favour of oil --- lua/plugins/common.lua | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/lua/plugins/common.lua b/lua/plugins/common.lua index 0d9b50b..67dea25 100644 --- a/lua/plugins/common.lua +++ b/lua/plugins/common.lua @@ -145,26 +145,4 @@ return { icons = { empty = '●', filled = '○', lsp_prefix = '●' }, }, }, - - -- file menu - { - 'nvim-tree/nvim-tree.lua', - config = function() - require('nvim-tree').setup { - renderer = { - icons = { - glyphs = require('circles').get_nvimtree_glyphs(), - }, - }, - filters = { - custom = { - '__pycache__', - }, - }, - git = { - ignore = false, - }, - } - end, - }, }