lualine.nvim/lua/lualine/extensions/fzf.lua

16 lines
324 B
Lua
Raw Normal View History

-- Copyright (c) 2020-2021 hoob3rt
-- MIT license, see LICENSE for more details.
local function fzf_statusline() return 'FZF' end
local empty = {function() return ' ' end, left_padding=0, right_padding=0}
2020-12-30 14:48:51 +00:00
2021-03-12 23:52:28 +00:00
local M = {}
M.sections = {
lualine_a = {fzf_statusline},
lualine_c = {empty}
}
2020-12-30 14:48:51 +00:00
M.filetypes = {'fzf'}
2021-03-12 23:52:28 +00:00
return M