Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kyazdani42/nvim-palenight.lua

A palenight colorscheme for neovim
https://github.com/kyazdani42/nvim-palenight.lua

Last synced: about 2 months ago
JSON representation

A palenight colorscheme for neovim

Awesome Lists containing this project

README

        

# Nvim-palenight.lua

A dark color scheme for Neovim based off [this great palenight plugin](https://github.com/drewtempelmeyer/palenight.vim)

## Notices

- The background is #1b1e2b and not #292d3e
- This plugin works better with [vim-polyglot](https://github.com/sheerun/vim-polyglot)
- I don't want to bother with non true color and terminal colors because don't use a tty, i use the good old [alacritty](https://github.com/alacritty/alacritty)
- I want to port most of what i can from vimscript to lua
- Thanks again [@drewtempelmeyer](https://github.com/drewtempelmeyer)

## Installation
Using [vim-plug](https://github.com/junegunn/vim-plug) (modify this to work with your Vim package manager of choice):

```vim
Plug 'kyazdani42/nvim-palenight.lua'
```

## Setup

You'll need to enable `termguicolors` for the theme to work properly
```vim
set termguicolors
colorscheme palenight
```

To configure lightline, add the following line:
```vim
let g:lightline = { 'colorscheme': 'palenight' }
```