Skip to content

๐Ÿค–๐Ÿ’ค High-contrast, Retro-Futuristic & Vibrant Coloursheme for Neovim & Cie

License

Notifications You must be signed in to change notification settings

lbartoletti/lituus.nvim

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

41 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

A high-contrast, futuristic & vibrant theme for neovim

Issues License stars

๐Ÿš€ Features

  • Transparency-first design - all design decisions are made with transparency in mind
  • High contrast - Colours have been carefully chosen to be cohesive and easy on the eyes while still being easy to distinguish
Supported Plugins

lituus-screenshot

๐Ÿ“ฆ Installation

Lazy:

{
    "scottmckendry/lituus.nvim",
    lazy = false,
    priority = 1000,
    config = function()
        require("lituus").setup({
            -- Recommended - see "Configuring" below for more config options
            transparent = true,
            italic_comments = true,
            hide_fillchars = true,
            borderless_telescope = true,
        })
        vim.cmd("colorscheme lituus") -- set the colorscheme
    end,
}

Lualine (optional):

{
    local lituus = require("lualine.themes.lituus")
    require("lualine").setup({
        -- ... other config
        options = {
            theme = "lituus",
        },
        -- ... other config
    })
}

See my personal lualine config here for an example.

โš™๏ธ Configuring

Below is an example of all the available configuration options:

require("lituus").setup({
    -- Enable transparent background
    transparent = true, -- Default: false

    -- Enable italics comments
    italic_comments = true, -- Default: false

    -- Replace all fillchars with ' ' for the ultimate clean look
    hide_fillchars = true, -- Default: false

    -- Modern borderless telescope theme
    borderless_telescope = true, -- Default: true

    theme = { -- Default: nil
        highlights = {
            -- Highlight groups to override, adding new groups is also possible
            -- See `:help highlight-groups` for a list of highlight groups

            -- Example:
            Comment = { fg = "#696969", bg = "NONE", italic = true },

            -- Complete list can be found in `lua/lituus/theme.lua`
        },

        -- Override a color entirely
        colors = {
            -- For a list of colors see `lua/lituus/colours.lua`
            -- Example:
            bg = "#000000",
            green = "#00ff00",
            magenta = "#ff00ff",
        },
    },
})

๐Ÿค Contributing

Pull requests are welcome. If a plugin you use is not supported, please open an issue and I'll try to add support for it. If you have any suggestions or feedback, please open an issue.

About

๐Ÿค–๐Ÿ’ค High-contrast, Retro-Futuristic & Vibrant Coloursheme for Neovim & Cie

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 85.3%
  • CSS 14.7%