Skip to content

edmondburnett/leeward.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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,
})

About

A dark blue theme for Neovim

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages