Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 1006 Bytes

README.md

File metadata and controls

51 lines (38 loc) · 1006 Bytes

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