- A colorscheme
- More to come in the future
Download with your favourite package manager
Lua { 'Matercan/materscheme.nvim' } -- Lazy
Lua use 'Matercan/materscheme.nvim' -- Packer
Simply use the built-in command :colorscheme
Vim colorscheme matervim
Lua vim.cmd("colorscheme materscheme")
There is no need to call setup() if you are fine with the default configuration.
If you would like to change any of the options, you need to edit it in the config = function() using vim.api directly
-- Example
config = function()
require(materscheme).setup({})
vim.cmd("colorscheme materscheme")
end,Default:
config = function()
require(materscheme).setup({
colors = {
blue = "#1f0d88"
red = "#fc1616"
purple = "#4e1847"
green = "#165046"
orange = "#6e380e"
magneta = "#551154"
black = "#000000"
text = "#fce9ca"
light_green = "#21a40b"
light_magenta = "#b59efa"
light_red = "#ffffff"
light_blue = "#1BD1DE"
light_orange = "#660808"
light_purple = "#9B28DE"
white = "#ffffff"
gutter_fg = "#78808f"
nontext = "#d2d6dc"
}
})
vim.cmd("colorscheme materscheme")
end,