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.
{
"at2er/simple-night.nvim",
lazy = false,
priority = 1000,
config = function ()
require("simple-night").setup({
-- ... your config
})
end,
}
vim.cmd[[colorscheme simple-night]]
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",
},
})
- More complete README documentation.
- More highlight support.
- treesitter support.
- nvim-cmp support.
- neo-tree support.
- indent-blankline support.
- More plugin support.
- Screenshot demo.
- tokyonight.nvim directory structure reference and README file reference