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