Skip to content

Allianaab2m/penumbra.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🌘 penumbra.nvim

darkImage

Original color theme: nealmckee/penumbra

As for the colorscheme loading logic, I referred to dracula.nvim a great deal. Thank you.

Installing

require('packer').startup({function(use)
  use({
    'Allianaab2m/penumbra.nvim',
    config = function()
      require('penumbra').setup()
      vim.api.nvim_command('colorscheme penumbra')
    end
  })
end})

Configs

{
  italic_comment = bool, -- default: false
  transparent_bg = bool, -- default: false
  show_end_of_buffer = bool, --default: false
  lualine_bg_color = '#RRGGBB', -- default: nil
  light = bool, -- default: false
  contrast = nil | 'plus' | 'plusplus' -- default: nil
  -- customize colors
  colors = {
    sun_p = '#FFFDFB',
    sun = '#FFF7ED',
    sun_m = '#F2E6D4',
    sky_p = '#BEBEBE',
    sky = '#8F8F8F',
    sky_m = '#636363',
    shade_p = '#3E4044',
    shade = '#303338',
    shade_m = '#24272B',

    red = '#CA736C',
    orange = '#BA823A',
    yellow = '#8D9741',
    green = '#47A477',
    cyan = '#00A2AF',
    blue = '#5794D0',
    purple = '#9481CC',
    magenta = '#BC73A4',
  },
  overrides = {
    -- example:
    -- NonText = { fg = '#RRGGBB' }
  },
}

Support Plugins