From 64a378d670bf571f46922617a4d330308ca40f3e Mon Sep 17 00:00:00 2001 From: hoob3rt Date: Thu, 11 Mar 2021 00:14:37 +0100 Subject: [PATCH] feat: added fugitive extension --- lua/lualine/extensions/fugitive.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 lua/lualine/extensions/fugitive.lua diff --git a/lua/lualine/extensions/fugitive.lua b/lua/lualine/extensions/fugitive.lua new file mode 100644 index 0000000..1b26f91 --- /dev/null +++ b/lua/lualine/extensions/fugitive.lua @@ -0,0 +1,16 @@ +-- Copyright (c) 2020-2021 hoob3rt +-- MIT license, see LICENSE for more details. + +local M = {} + +M.sections = { + lualine_a = { 'FugitiveHead' }, +} + +M.inactive_sections = { + lualine_a = { 'FugitiveHead' }, +} + +M.filetypes = { 'fugitive' } + +return M