Skip to content

colorscheme using pywal and applying colors to current desktop wallpaper

License

Notifications You must be signed in to change notification settings

devCote/wallbox.nvim

Repository files navigation

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")

About

colorscheme using pywal and applying colors to current desktop wallpaper

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages