Skip to content

A dark and light Neovim theme written in fennel, inspired by IBM Carbon.

License

Notifications You must be signed in to change notification settings

F4LCn/oxocharcoal.nvim

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

oxocharcoal.nvim

Shameless fork of oxycarbon with color changes to be more consistent across languages I work with

Features

  • Support for popular plugins, such as Lsp, Treesitter, and Semantic Highlighting
  • Fast and Featureful. Supports all the highlights you'll ever need without making a dent on startuptime
  • Uses Termguicolors but its compatible with 16-color terminals as well

Plugin support

The colorscheme explicitly adds highlights for the following plugins:

  • Vim Diagnostics
  • Vim LSP
  • Nvim-Treesitter
  • Telescope
  • Nvim-Notify
  • Nvim-Cmp
  • NvimTree
  • Neogit
  • Gitsigns
  • Hydra

And many others should "just work!" If you have a plugin that needs explicit highlights, feel free to open an issue or PR and I would be happy to add them.

Install

The colorscheme requires the latest stable or nightly neovim (> v0.7.0)

Packer.nvim

use {'nyoom-engineering/oxocharcoal.nvim'}

Lazy.nvim

return { 
  "nyoom-engineering/oxocharcoal.nvim"
  -- Add in any other configuration; 
  --   event = foo, 
  --   config = bar
  --   end,
}, 

Usage

For neovim nightly users:

vim.opt.background = "dark" -- set this to dark or light
vim.cmd.colorscheme "oxocharcoal"

For neovim stable users:

vim.opt.background = "dark" -- set this to dark or light
vim.cmd("colorscheme oxocharcoal")

You can also add a transparent background by adding the following lines after colorscheme:

vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })

Development

You must install hotpot, since is what is used for compiling the fennel code.

Workflow

  • Fork the project
  • Make changes in the files under fnl/
  • Compile your changes by running :Fnlfile make.fnl
  • Make a PR

License

The project is licensed under the MIT license

About

A dark and light Neovim theme written in fennel, inspired by IBM Carbon.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Fennel 52.5%
  • Lua 47.4%
  • Makefile 0.1%