Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mahanrahmati/darknessx-vim
A dark Neovim color scheme (treesitter supported)
https://github.com/mahanrahmati/darknessx-vim
color-scheme dark lualine neovim
Last synced: about 1 month ago
JSON representation
A dark Neovim color scheme (treesitter supported)
- Host: GitHub
- URL: https://github.com/mahanrahmati/darknessx-vim
- Owner: MahanRahmati
- License: mit
- Created: 2021-05-17T17:02:55.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-17T18:11:53.000Z (over 3 years ago)
- Last Synced: 2023-03-04T00:01:50.218Z (almost 2 years ago)
- Topics: color-scheme, dark, lualine, neovim
- Language: Vim script
- Homepage:
- Size: 22.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DarknessX-vim
![React pic](DarknessX.jpg)A dark neovim color scheme
based on - snazzy (Based on [hyper-snazzy](https://github.com/sindresorhus/hyper-snazzy/) by [Sindre Sorhus](https://sindresorhus.com))### Credit
The generate script comes from this repo: https://github.com/ChristianChiarulli/nvcode-color-schemes.vim
and https://github.com/felipec/vim-felipec### Requirements
This color scheme requires [treesitter](https://github.com/nvim-treesitter/nvim-treesitter) and [Neovim](https://neovim.io/) > 0.5.
## Installing
With `Packer`
```lua
use 'UltimateOmega/DarknessX-vim'
use 'nvim-treesitter/nvim-treesitter'
```## Configuring
Add this to your `init.lua` file
```lua
vim.cmd('colorscheme darknessX')
```
##### LualineTo enable the [lualine](https://github.com/hoob3rt/lualine.nvim) theme:
```lua
require('lualine').setup {
options = {
theme = 'darknessX'
}
}
```