Skip to content

skykosiner/statusline.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 

Repository files navigation

statusline.nvim

A small customizable status line written in Lua.

Lua

Installation

Lazy

{
    "skykosiner/statusline.nvim",
    dependencies = {
        "nvim-lua/plenary.nvim",
        "nvim-tree/nvim-web-devicons"
    }
}

Packer

use {
    "skykosiner/statusline.nvim",
    branch = "harpoon2",
    requires = {{"nvim-lua/plenary.nvim"}, {"nvim-tree/nvim-web-devicons" }}
}

Getting started

require("statusline").setup {
    background_color = "#2e2e2e",
    foreground_color = "#7fa3c0",
    lsp_info = true,
    harpoon_info = true,
    git_info = true,
    show_icons = true,
}

The above config is a very basic config needed to get everything setup correctly. You can edit the background/foreground color using any hex color code you want to. Then you can also change certain bits of info being displayed to true or false. The config above is the default, but you can change

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages