21 lines
295 B
Lua
Raw Normal View History

-- Copyright (c) 2020-2021 hoob3rt
-- MIT license, see LICENSE for more details.
local function fzf_statusline()
2021-03-13 00:52:28 +01:00
return 'FZF'
2020-12-30 15:48:51 +01:00
end
2021-03-13 00:52:28 +01:00
local M = {}
M.sections = {
lualine_a = { fzf_statusline },
}
2020-12-30 15:48:51 +01:00
2021-03-13 00:52:28 +01:00
M.inactive_sections = {
lualine_a = { fzf_statusline },
2020-12-30 15:48:51 +01:00
}
2021-03-13 00:52:28 +01:00
M.filetypes = { 'fzf' }
return M