Files
neovim-config/lua/plugins/statusline/heirline.lua
T
rootiest 823e113276 🧹 refactor(data): require data modules directly
require data modules directly throughout config. No longer user
require("data") as a parent module
2024-11-08 12:39:30 -05:00

22 lines
937 B
Lua

--- @module "plugins.statusline.heirline"
--- This module defines the heirline plugin spec for the Neovim configuration.
--- This option uses the heirline plugin to create a statusline for Neovim
---
--- Activate this module by setting the 'vim.g.statusline' variable to 'heirline'
-- ╭─────────────────────────────────────────────────────────╮
-- │ Heirline │
-- ╰─────────────────────────────────────────────────────────╯
return {
{
"rebelot/heirline.nvim",
cond = require("data.func").check_global_var(
"statusline",
"heirline",
"lualine"
),
event = "UIEnter",
opts = {},
},
}