Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/PHSix/nvim-hybrid
A neovim colorscheme write in lua.
https://github.com/PHSix/nvim-hybrid
colorscheme lua neovim neovim-plugin
Last synced: 14 days ago
JSON representation
A neovim colorscheme write in lua.
- Host: GitHub
- URL: https://github.com/PHSix/nvim-hybrid
- Owner: PHSix
- Created: 2021-02-03T03:21:31.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-22T08:56:59.000Z (almost 3 years ago)
- Last Synced: 2024-07-31T20:48:17.254Z (3 months ago)
- Topics: colorscheme, lua, neovim, neovim-plugin
- Language: Lua
- Homepage:
- Size: 809 KB
- Stars: 26
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-neovim - PHSix/nvim-hybrid - A Neovim colorscheme write in Lua. (Colorscheme / Tree-sitter Supported Colorscheme)
README
# Information
A neovim colorscheme write in pure lua.
# Requirement
neovim(version >= 0.5)
# Screenfetch
![image](https://user-images.githubusercontent.com/57695072/124710554-84d5e780-df2f-11eb-9292-bbd5bd3ddafa.png)
![image](https://user-images.githubusercontent.com/57695072/124710680-af27a500-df2f-11eb-8c3c-c16fc74bb42b.png)
![image](https://user-images.githubusercontent.com/57695072/124710726-ba7ad080-df2f-11eb-88e1-c89f546c8d4e.png)
# Usage
Use [wbthomason/packer.nvim](https://github.com/wbthomason/packer.nvim) to install.
```lua
use{
'PHSix/nvim-hybrid',
config = function()
require('hybrid').setup()
-- or use
-- vim.cmd [[colorscheme nvim-hybrid]]
end
}
```
# Support plugins
- [coc-git](https://github.com/neoclide/coc-git)
- [airblade/vim-gitgutter](https://github.comairblade/vim-gitgutter)
- [nvim-lspconfig](https://github.com/neovim/nvim-lspconfig)
- [dashboard](https://github.com/glepnir/dashboard-nvim)
- [barbar.nvim](https://github.com/romgrk/barbar.nvim)
- coc-diagnostic
## 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`.```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](https://github.com/glepnir/zephyr-nvim) (used async)# Todo
- [x] [nvim-bufferline.lua](https://github.com/akinsho/nvim-bufferline.lua)
- [x] [nvim-treesitter](https://github.com/akinsho/nvim-treesitter/nvim-treesitter)