An attempt at a color scheme that does not look like a clown puked up the source code.
To enable this colorscheme:
colorscheme no-clown-fiestavim.cmd[[colorscheme no-clown-fiesta]]To override the default settings you need to call setup before enabling the colorscheme. No-clown-fiesta will use these settings, unless you call setup and override these.
require("no-clown-fiesta").setup({
theme = "dark", -- supported themes are: dark, dim, light
transparent = false, -- Enable this to disable the bg color
styles = {
-- You can set any of the style values specified for `:h nvim_set_hl`
comments = {},
functions = {},
keywords = {},
lsp = {},
match_paren = {},
type = {},
variables = {},
},
})If you are using the lazy, then you can install and configure the plugin like this:
(local opts {:theme :dark
:styles {:type {:bold true}
:lsp {:underline true}
:match_paren {:underline true}}})
(λ config []
(let [plugin (require :no-clown-fiesta)]
(plugin.load opts)))
{1 :aktersnurra/no-clown-fiesta.nvim :lazy false :priority 1000 : config}or if you prefer lua:
local opts = {
theme = "dark",
styles = {
type = { bold = true },
lsp = { underline = false },
match_paren = { underline = true },
},
}
local function config()
local plugin = require "no-clown-fiesta"
return plugin.load(opts)
end
return {
"aktersnurra/no-clown-fiesta.nvim",
priority = 1000,
config = config,
lazy = false,
}Other plugin managers are left as an exercise to the reader.
This plugin supports three different themes:
- dark = default dark theme
- dim = low contrast dark theme
- light = light version (still under development)
- Alpha
- Dadbod-ui
- Dap UI
- Git
- Hop
- LSP
- Lazy
- Leap
- Lir
- Lualine
- Markdown
- Mason
- Neogit
- Neotest
- NvimCmp
- BlinkCmp
- NvimTree
- Orgmode
- StatusLine
- Telescope
- Treesitter
- WhichKey
- mini.statusline
- DiffView
Enable theme by setting the theme options in the lualine options, e.g.:
(local opts {:options {:theme :no-clown-fiesta}})