chama-chomo / grail

Pleasant on eyes colorscheme for neovim

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Grail.nvim

Pleasant on eyes grail colour scheme.

Screenshot

Screenshot

Goals

  • reducing color strain after enabling Treesitter highlighting
  • warm colors
  • suitable for long coding sessions during night

Features

  • 100% Lua, supports Treesitter & LSP
  • Vim terminal colours

Installation

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,
})

About

Pleasant on eyes colorscheme for neovim

License:MIT License


Languages

Language:Lua 100.0%