Skip to content

na47io/bfg.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

black forest gateau

image

Showcased with Comic Mono.

A minimal, calming Neovim colorscheme with muted greens and yellows. Inspired by Jonathan Blow's programming environment - to me it means taking programming seriously. Nothing is more serious than a Black Forest Gateau.

installation

using Neovim 0.12 built-in plugin manager vim-pack:

vim.pack.add({
  "https://github.com/na47io/bfg.nvim",
})

require "bfg".setup({
    -- optional configuration here
})

vim.cmd("colorscheme bfg")

using lazy.nvim:

{
  'yourusername/bfg.nvim',
  config = function()
    require('bfg').setup()
    vim.cmd('colorscheme bfg')
  end,
}

using packer.nvim:

use {
  'yourusername/bfg.nvim',
  config = function()
    require('bfg').setup()
    vim.cmd('colorscheme bfg')
  end
}

default configuration

require('bfg').setup({
  terminal_colors = true,
  transparent_mode = true,
  italic = {
    comments = true,
    strings = false,
  },
  bold = false,
  palette_overrides = {},
  overrides = {},
})

extras

Additional configurations for other applications can be found in the extras/ folder:

  • ghostty - Terminal emulator theme
  • tmux - Status line configuration
  • lazygit - Git TUI theme

contributing

Pull requests are welcome! Feel free to submit themes for additional applications, improvements to the existing colorscheme, or bug fixes.


Thanks to vague2k for inspiration and a repository template.

About

A serene, dark colorscheme. Muted forest greens and gentle yellows emerge from deep shadows, like moonlight reflecting off a lake surface among dark and ancient trees.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors