Skip to content

ricdotnet/ricdotline

Repository files navigation

What is this

This is a simple plugin that I built to display a custom status line in neovim. It is built to accomodate my configs but can be used by anyone who feels like it... however, if you do get it, you should make it work with your own configs. Feel free to fork and modify how you want :-)

gruvbox material material-round gruvbox-large

Dependencies

Installation

{ "ricdotnet/ricdotline" }

Usage

require("ricdotline").setup {}
extra setup
function partC()
  return "hello world"
end

{
  wakatime = true, -- requires wakatime plugin installed
  theme = "gruvbox", -- gruvbox or material
  separator = "arrow", -- arrow or round
  colors = {}, -- to be updated
  partA = "hello world",
  partB = function()
    return "hello world"
  end,
  partC = partC,
}

We can also pass a function or a string for each part of the statusline. This can be used to override the default value and allows for more customization. Note that passing a function it must return a string.

About

Just another statusline plugin for neovim.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages