Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/friskenstein/witchcraft.nvim

Neovim colorscheme based on tiagovla/tokyodark.nvim
https://github.com/friskenstein/witchcraft.nvim

Last synced: 19 days ago
JSON representation

Neovim colorscheme based on tiagovla/tokyodark.nvim

Awesome Lists containing this project

README

        

# Witchcraft

Based on `tiagovla/tokyodark.nvim`

![screenshot](screenshot.jpg)

### About

A clean dark theme written in lua for neovim (0.7.2 or older).

### Features

- Support for numerous plugins
- Customizable

### Installation

Install with your favorite package manager:

[lazy](https://github.com/folke/lazy.nvim)

``` lua
{
"Dedtec/witchcraft.nvim",
opts = {
-- custom options here
},
config = function(_, opts)
require("witchcraft").setup(opts) -- calling setup is optional
vim.cmd [[colorscheme witchcraft]]
end,
}
```

### Default configuration

```lua
local default_config = {
transparent_background = false, -- set background to transparent
gamma = 1.00, -- adjust the brightness of the theme
styles = {
comments = { italic = true }, -- style for comments
keywords = { italic = true }, -- style for keywords
identifiers = { italic = true }, -- style for identifiers
functions = {}, -- style for functions
variables = {}, -- style for variables
},
custom_highlights = {} or function(highlights, palette) return {} end, -- extend highlights
custom_palette = {} or function(palette) return {} end, -- extend palette
terminal_colors = true, -- enable terminal colors
}
```

### Inspiration

- [tokyodark.nvim](https://github.com/tiagovla/tokyodark.nvim)
- [tokyonight-vim](https://github.com/ghifarit53/tokyonight-vim)
- [tokyo-night-vscode-theme](https://github.com/enkia/tokyo-night-vscode-theme)