This dark Neovim theme uses 9 colours and is based on the Evangelion colourscheme, so it has support for FZF,Blink,Cmp,Lazy and Mason. All colours can be seen in palette.lua.
--lazy with lualine theme included
return{
"Pair-of-dice/Alienocean.nvim",
--Lualine theme can also be put in a separate file and not as a dependency
dependencies = {
"Pair-of-dice/Alienocean-lualine", --lualine theme
},
}--lazy with configuration and lualine theme
return
{
"Pair-of-dice/Alienocean.nvim",
--Lualine theme can also be put in a separate file and not as a dependency
dependencies = {
"Pair-of-dice/Alienocean-lualine", --lualine theme
},
lazy = false,
priority = 1000,
opts = {
overrides = { --Use this to change a certain highlight group
normal = { fg = "#999999", bg = "#00001b", undercurl = true },
["@boolean"] = { link = "Special" },
},
allowTextStyling = true, -- When disabled all text styling such as bold,italic,strikethrough and undercurl are not displayed.
},
init = function()
vim.cmd.colorscheme("Alienocean") --Sets the colourscheme to Alienocean on load
end,
}This is what this colourscheme is based on and what taught me how to do this. Evangelion colourscheme Helped with providing the palette. colorgen-nvim