Go to file
2023-12-07 05:07:51 +01:00
colors Finished most of the structure rewrite, split up the highlight definitions into separate files 2023-12-06 09:44:46 +01:00
lua/flexoki Fixed all the basic built-in highlight groups, temporarily disable all plugin support, will be added back one by one as I convert them 2023-12-07 05:07:51 +01:00
screenshots Import from old repo and small changes as discussed in #1 2023-10-31 18:09:02 +01:00
LICENSE Initial readme and license 2023-10-31 09:54:05 -07:00
README.md Import from old repo and small changes as discussed in #1 2023-10-31 18:09:02 +01:00

flexoki-nvim

A nvim adaptation of flexoki by Steph Ango (stephango.com/flexoki)

Flexoki Dark for Neovim

Flexoki Light for Neovim

Installation

To install simply add via your plugin manager and call the theme

lazy.nvim

require("lazy").setup({
  { 'kepano/flexoki-neovim', name = 'flexoki' }
})

packer.nvim

require('packer').startup(function(use)
  use({ 'kepano/flexoki-neovim', as = 'flexoki' })
end)

Paq

require('paq')({
  { 'kepano/flexoki-neovim', as = 'flexoki' }
})

Usage

  • Dark
-- Set colorscheme after options
vim.cmd('colorscheme flexoki-dark')
  • Light
-- Set colorscheme after options
vim.cmd('colorscheme flexoki-light')