Skip to content

at2er/simple-night.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Night

Note

(English is not my native language, most parts are machine translated)

This theme is my first nvim plugin. There are many be areas for imporvement, please feel free to point out the problem :).

A simple dark Neovim theme written in lua.

demo

Installation

lazy

{
    "at2er/simple-night.nvim",
    lazy = false,
    priority = 1000,
    config = function ()
        require("simple-night").setup({
            -- ... your config
        })
    end,
}

Usage

vim.cmd[[colorscheme simple-night]]

Configuration

Important

Set the configuration BEFORE loading the color scheme with colorscheme simple-night.

Example (lazy.nvim):

require("simple-night").setup({
    extend_colors = false,
    transparent = false,
    styles = {
        comments = { italic = true },
        keywords = { italic = true },
    },
    plugins = {
        "cmp",
        "ibl",
        "neotree",
        "treesitter",
    },
})

TODO

Special Thanks

Releases

No releases published

Packages

No packages published

Languages