Pleasant on eyes grail colour scheme.
- reducing color strain after enabling Treesitter highlighting
- warm colors
- suitable for long coding sessions during night
- 100% Lua, supports Treesitter & LSP
- Vim terminal colours
Using lazy.nvim:
require("lazy").setup({
"chama-chomo/grail",
version = false,
lazy = false,
priority = 1000, -- make sure to load this before all the other start plugins
-- Optional; default configuration will be used if setup isn't called.
config = function()
require("grail").setup({
-- Your config here
})
end,
})
Using packer.nvim:
use({
"chama-chomo/grail",
-- Optional; default configuration will be used if setup isn't called.
config = function()
require("grail").setup()
end,
})