6faaa05ae5
This reverts commit 846e5bdabfc2bb49407a1e32ed5deec1375c3b08.
16 lines
233 B
Lua
16 lines
233 B
Lua
-- Copyright (c) 2020-2021 hoob3rt
|
|
-- MIT license, see LICENSE for more details.
|
|
local function fzf_statusline()
|
|
return 'FZF'
|
|
end
|
|
|
|
local M = {}
|
|
|
|
M.sections = {
|
|
lualine_a = { fzf_statusline },
|
|
}
|
|
|
|
M.filetypes = { 'fzf' }
|
|
|
|
return M
|