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