Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kepano/flexoki-neovim
Flexoki color scheme for Neovim
https://github.com/kepano/flexoki-neovim
color-scheme neovim vim
Last synced: 11 days ago
JSON representation
Flexoki color scheme for Neovim
- Host: GitHub
- URL: https://github.com/kepano/flexoki-neovim
- Owner: kepano
- License: mit
- Created: 2023-10-26T17:00:26.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-21T13:55:01.000Z (8 months ago)
- Last Synced: 2024-10-10T18:48:49.853Z (28 days ago)
- Topics: color-scheme, neovim, vim
- Language: Lua
- Homepage: https://stephango.com/flexoki
- Size: 313 KB
- Stars: 53
- Watchers: 4
- Forks: 13
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flexoki-neovim
Neovim adaptation of [Flexoki](stephango.com/flexoki) by Steph AngoCurrently still **work in progress** and missing support for even the most
common plugins. This will be fixed shortly. If you are using a plugin that
isn't supported please create an issue, or upvote an existing one, we will use
this to prioritize them.> These aren't currently up to date
![Flexoki Dark for Neovim](screenshots/flexoki-neovim-dark.png)
![Flexoki Light for Neovim](screenshots/flexoki-neovim-light.png)
## Installation
To install simply add via your plugin manager and call the theme**[lazy.nvim](https://github.com/folke/lazy.nvim)**
```lua
require("lazy").setup({
{ 'kepano/flexoki-neovim', name = 'flexoki' }
})
```**[packer.nvim](https://github.com/wbthomason/packer.nvim)**
```lua
require('packer').startup(function(use)
use({ 'kepano/flexoki-neovim', as = 'flexoki' })
end)
```**[Paq](https://github.com/savq/paq-nvim)**
```lua
require('paq')({
{ 'kepano/flexoki-neovim', as = 'flexoki' }
})
```## Usage
* Dark
```lua
-- Set colorscheme after options
vim.cmd('colorscheme flexoki-dark')
```* Light
```lua
-- Set colorscheme after options
vim.cmd('colorscheme flexoki-light')
```