Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/clouduser98/oblivion.nvim

Port of gedit's Oblivion theme by Paolo Borelli for Neovim.
https://github.com/clouduser98/oblivion.nvim

colorscheme lua neovim neovim-colorscheme neovim-theme theme

Last synced: about 2 months ago
JSON representation

Port of gedit's Oblivion theme by Paolo Borelli for Neovim.

Awesome Lists containing this project

README

        

# oblivion.nvim

This is a port of gedit's Oblivion theme, originally created by Paolo Borelli, for Neovim using [lush.nvim](https://github.com/rktjmp/lush.nvim).

# Requirements
- Neovim v0.8.0

# Installation
Using packer.nvim

```lua
-- The colorscheme needs lush.nvim to work
use {
"cloudUser98/oblivion.nvim",
requires = "rktjmp/lush.nvim"
}
```

# Usage

From your init.lua:

```lua
vim.opt.termguicolors = true
vim.o.background = "dark"

vim.cmd("colorscheme oblivion.nvim")
```