8000 GitHub - cpplain/flexoki.nvim: An inky color scheme for Neovim
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

cpplain/flexoki.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flexoki.nvim

Flexoki, an inky color scheme for Neovim. Based on stephango.com/flexoki.

Screenshot 2025-05-06 at 9 20 36 PM Screenshot 2025-05-06 at 9 20 11 PM

Features

  • Complete light and dark themes that follow Flexoki color guidelines
  • Support for popular Neovim plugins (gitsigns.nvim, lualine.nvim) (others in progress)
  • Diagnostic colors
  • Treesitter support
  • LSP support

Installation

Install plugin with your preferred package manager.

lazy.nvim

{
  "cpplain/flexoki.nvim",
  lazy = false,
  priority = 1000,
  opts = {},
}

Usage

Enable plugin highlights

require("flexoki").setup({
  plugins = {
    "gitsigns", -- gitsigns.nvim
    "nvim_treesitter_context",
    "which_key", -- which-key.nvim
  }
})

require("lualine").setup({
  options = {
      theme = "flexoki",
  },
})

Load the color scheme

-- Load color scheme after options
vim.cmd.colorscheme("flexoki")

Switch between light and dark themes

The color scheme will automatically switch between light and dark themes based on the value of background (:help background).

-- Switch to light theme
vim.o.background = 'light'

-- Switch to dark theme
vim.o.background = 'dark'

About

An inky color scheme for Neovim

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages

0