A neovim colorscheme write in pure lua.
neovim(version >= 0.5)
Use wbthomason/packer.nvim to install.
use{
'PHSix/nvim-hybrid',
config = function()
require('hybrid').setup()
-- or use
-- vim.cmd [[colorscheme nvim-hybrid]]
end
}
- coc-git
- airblade/vim-gitgutter
- nvim-lspconfig
- dashboard
- barbar.nvim
- coc-diagnostic
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": "▊",
glepnir/zephyr-nvim (used async)