Skip to content

Funline.nvim is a flexible and feature-rich Neovim statusline plugin, designed for users who want a highly customizable and dynamic statusline.

License

Notifications You must be signed in to change notification settings

kaze-k/funline.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

funline.nvim

Stargazers Issues Contributors

About

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.

Requires

Installation

{
  "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
}

Commands

  • :FunlineToggle open/close funline
  • :FunlineOpen open funline
  • :FunlineClose close funline
  • :FunlineStop stop funline refresh
  • :FunlineStart start funline refresh
  • :FunlineReload reload funline

API

  • require("funline").toggle() open/close funline
  • require("funline").open() open funline
  • require("funline").close() close funline
  • require("funline").stop() stop funline refresh
  • require("funline").start() start funline refresh
  • require("funline").reload() reload funline

Setup

-- 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,
})

Component Examples

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.

About

Funline.nvim is a flexible and feature-rich Neovim statusline plugin, designed for users who want a highly customizable and dynamic statusline.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages