PHSix/nvim-hybrid

github github
colorschemetreesitter-colorschemes
stars 27
issues 1
subscribers 2
forks 3
CREATED

2021-02-03

UPDATED

2 years ago


Information

A neovim colorscheme write in pure lua.

Requirement

neovim(version >= 0.5)

Screenfetch

image image image

Usage

Use wbthomason/packer.nvim to install.

use{
  'PHSix/nvim-hybrid',
  config = function()
    require('hybrid').setup()
    -- or use
    -- vim.cmd [[colorscheme nvim-hybrid]]
  end
}

Support plugins

coc setting

If you use coc.nvim for your completion plugin and you want have similar with screenfetch(I use nvim-lspconfig), you need setting your coc-setting.json.

  "git.addedSign.text": "|",
  "git.removedSign.text": "|",
  "git.changeRemovedSign.text": "|",
  "git.topRemovedSign.text": "|",
  "git.changedSign.text": "|",
  "git.addedSign.hlGroup": "DiffAdd",
  "git.changedSign.hlGroup": "DiffChange",
  "git.removedSign.hlGroup": "DiffDelete",
  "git.topRemovedSign.hlGroup": "DiffDelete",
  "git.changeRemovedSign.hlGroup": "DiffChange",
  "diagnostic.enableSign": true,
  "diagnostic.errorSign": "▊",
  "diagnostic.hintSign": "▊",
  "diagnostic.infoSign": "▊",
  "diagnostic.warningSign": "▊",

Inspiration

glepnir/zephyr-nvim (used async)

Todo