/leeward.nvim

A dark blue theme for Neovim

Primary LanguageLuaMIT LicenseMIT

Leeward colorscheme for Neovim

Dark blue-ish theme inspired by a custom combination of several other colorschemes.

Orignally forked from an earlier version of zanglg/nova.nvim before it broke my setup and was moved away from a bluer theme. WIP; will be using this as a basis to diverge from.

dark

Features

Installation

You can use your favorite plugin manager for this.

lazy

return {
    "edmondburnett/leeward.nvim",
    lazy = false,
    priority = 1000,
    opts = {
        theme = "dark",
    },
    config = function()
        require("leeward").setup()
        require("leeward").load()
    end
}

packer

use({
    "edmondburnett/leeward.nvim",
    config = function()
        -- support both dark and light style
        vim.o.background = "dark"

        -- setup color palette
        require("leeward").setup()

        -- load colorscheme
        require("leeward").load()
    end,
})