colour theme for neovim based on the gleam website colours
Find a file
2025-12-01 19:55:58 +00:00
assets docs: add README 2025-12-01 19:55:58 +00:00
colors feat: add package layout 2023-12-24 16:43:17 +00:00
lua fix: add NormalFloat with base color background 2024-06-02 16:31:38 +01:00
LICENSE docs: add mit license file 2023-12-25 14:36:31 +00:00
README.md docs: add README 2025-12-01 19:55:58 +00:00

gleam theme nvim

A gleam colour theme for neovim.

example

gleam-theme-nvim

install

-- Packer
use 'bgwdotdev/gleam-theme-nvim'
-- Plug
Plug 'bgwdotdev/gleam-theme-nvim'
-- nixos input
gleam-theme-nvim.url = "github:bgwdotdev/gleam-theme-nvim";
gleam-theme-nvim.flake = false;

-- nixos output
let gleam-theme = pkgs.vimUtils.buildVimPlugin {
    name = "gleam-theme-nvim";
    src = gleam-theme-nvim;
};
programs.neovim.plugins = [ gleam-theme ];

configure

-- init.lua

vim.cmd('colorscheme gleam')