From 2b508fff7d0347c1c3a6c6ab0d3a338b6e3ee2d3 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Tue, 20 Feb 2024 01:28:38 +0100 Subject: [PATCH] neovim: render git in menu --- dot_config/nvim/lua/custom/plugins.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/dot_config/nvim/lua/custom/plugins.lua b/dot_config/nvim/lua/custom/plugins.lua index 5b0b898..f72aa52 100644 --- a/dot_config/nvim/lua/custom/plugins.lua +++ b/dot_config/nvim/lua/custom/plugins.lua @@ -1,4 +1,20 @@ local plugins = { + { + "nvim-tree/nvim-tree.lua", + opts = { + git = { + enable = true, + }, + renderer = { + highlight_git = true, + icons = { + show = { + git = true, + }, + }, + }, + }, + }, { "nvim-treesitter/nvim-treesitter", -- grammars opts = {