From ee88b9d3d82c540e2313392200bd1538d7742b19 Mon Sep 17 00:00:00 2001 From: servostar Date: Thu, 7 Nov 2024 23:00:28 +0100 Subject: [PATCH] feat: add plugin `satellite` --- lua/plugins/satellite.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lua/plugins/satellite.lua diff --git a/lua/plugins/satellite.lua b/lua/plugins/satellite.lua new file mode 100644 index 0000000..8c21137 --- /dev/null +++ b/lua/plugins/satellite.lua @@ -0,0 +1,21 @@ + +-- +-- Super fast git decorations implemented purely in Lua +-- +-- Source: https://github.com/lewis6991/satellite.nvim +-- .............................................. +-- +-- Author: Sven Vogel +-- Created: 07.11.2024 +-- Edited: 07.11.2024 +-- +-- ============================================== + +return { + { + 'lewis6991/satellite.nvim', + opts = { + current_only = false + } + } +}