Skip to content

Latest commit

 

History

History
74 lines (58 loc) · 1.38 KB

README.md

File metadata and controls

74 lines (58 loc) · 1.38 KB

WALLBOX

awesome theme for nvim using pywal colors

1ex 2ex

Prerequisites

Neovim 0.8.0+

Pywal

Installing

Using packer

use { "devCote/wallbox.nvim" }

Using lazy

{ "devCote/wallbox.nvim" }

Usage

Inside init.vim

colorscheme wallbox
" optional
vim.o.background = "dark" " or "light" for light mode

Inside init.lua

vim.cmd([[colorscheme wallbox]])
-- optional
vim.o.background = "dark" -- or "light" for light mode

Configurations

Additional settings for wallbox are:

-- setup must be called before loading the colorscheme
-- Default options:
require("wallbox").setup({
  undercurl = true,
  underline = true,
  bold = true,
  italic = {
    strings = true,
    comments = true,
    operators = false,
    folds = true,
  },
  strikethrough = true,
  invert_selection = false,
  invert_signs = false,
  invert_tabline = false,
  invert_intend_guides = false,
  inverse = true, -- invert background for search, diffs, statuslines and errors
  contrast = "", -- can be "hard", "soft" or empty string
  palette_overrides = {},
  overrides = {},
  dim_inactive = false,
  transparent_mode = false,
})
vim.cmd("colorscheme wallbox")