Just a simple light monochrome colorscheme for neovim.
Work in progress, so expect some changes.
Note: requires neovim >= 0.9.0
{ "fafa-a/anoukis" }
use "fafa-a/anoukis"
opts = {
transparent_background = true, --disable background color
variants = "", -- The variant option changes the color of the cursor, cursorline, illuminateword and the background.
-- defaut "purple" , "gray" | "red" | "orange" | "yellow" | "green" | "cyan" | "blue" | "rose"
styles = { -- styles for syntax highlight groups
-- styles = { "italic", "bold", "underline" }
-- for disable style use {""} or {"none"}
comments = { "italic" },
conditionals = {},
functions = { "bold" },
keywords = {},
strings = { "italic" },
variables = {},
numbers = {},
booleans = {},
types = {} ,
operators = {},
},
},
You can use `opts' directly on the lazy.nvim configuration.
{
"fafa-a/anoukis",
opts = {
-- your options here
}
}