Funline.nvim is a Neovim plugin made for rendering statusline format strings.
It is a customizable plugin, you can put some fun things on your statusline display.
Provides the ability to refresh the statusline at customizable intervals.
It was inspired by galaxyline and heirline.
{
"kaze-k/funline.nvim",
config = function()
require("my_statusline") -- your statusline config
end
}
use funline-base.nvim if you happen to be using the same plugin as me.
{
"kaze-k/funline-base.nvim",
dependencies = { "kaze-k/funline.nvim" },
config = function()
require("funline-base").setup()
end
}
:FunlineToggle
open/close funline:FunlineOpen
open funline:FunlineClose
close funline:FunlineStop
stop funline refresh:FunlineStart
start funline refresh:FunlineReload
reload funline
require("funline").toggle()
open/close funlinerequire("funline").open()
open funlinerequire("funline").close()
close funlinerequire("funline").stop()
stop funline refreshrequire("funline").start()
start funline refreshrequire("funline").reload()
reload funline
-- line config
---@class Line
---@field left? table
---@field mid? table
---@field right? table
---line highlights
---@class Highlights
---@field left? vim.api.keyset.highlight | function
---@field mid? vim.api.keyset.highlight | function
---@field right? vim.api.keyset.highlight | function
-- refresh config
---@class Refresh
---@field timeout? number
---@field interval? number
-- config
---@class Config
---@field statusline? Line
---@field specialline? Line
---@field highlights? Highlights
---@field specialtypes? table
---@field refresh? Refresh | boolean
---@field handle_update? function
require("funline").setup({
statusline = {
left = {...},
mid = {...},
right = {...},
},
specialline = {
left = {...},
mid = {...},
right = {...},
},
highlights = {
left = {...},
mid = {...},
right = {...},
},
specialtypes = {},
refresh = {
timeout = 0,
interval = 1000,
},
-- when is the control updated
handle_update = function(update)
if ... then
update(true)
else
update(false)
end
end,
})
All default properties of the component.
-- default props
---@class Component.Props
---@field condition boolean
---@field icon string
---@field provider string
---@field padding { left: string, right: string }
---@field hl vim.api.keyset.highlight
local DEFAULT_PROPS = {
condition = true,
icon = "",
provider = "",
padding = { left = "", right = "" },
hl = {},
}
All properties are optional because funline automatically adds default values.
- dynamic
M.example = function(ctx)
if ... then
ctx.refresh(1000) -- refresh every 1000ms
else
ctx.done() -- stop this component refresh
end
return {
condition = true, -- whether to display
icon = "😉", -- fun icon
provider = "Hello, World!", -- display text
padding = { left = " ", right = " " }, -- padding
hl = { fg = "#ff0000", bg = "#00ff00", bold = true }, -- highlight
}
end
- static
M.example = {
condition = true, -- whether to display
icon = "😉", -- fun icon
provider = "Hello, World!", -- display text
padding = { left = " ", right = " " }, -- padding
hl = { fg = "#ff0000", bg = "#00ff00", bold = true }, -- highlight
}
You can also refer to funline-base.nvim for custom configuration.