Skip to content

Latest commit

 

History

History
74 lines (60 loc) · 1.74 KB

README.md

File metadata and controls

74 lines (60 loc) · 1.74 KB

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