Pywal16.nvim is a modification of pywal.nvim, aiming to support a transparent background, 16 colors palettes, and more plugins.
It is made to work with pywal16, which is a fork of pywal generating/supporting 16 colors colorschemes (original pywal project only supports 9 colors).
pywal version | editor | colorscheme |
---|---|---|
dylanaraps/pywal (archived) | vim | dylanaraps/wal.vim (archived) |
dylanaraps/pywal (archived) | neovim | AlphaTechnolog/pywal.nvim (archived) |
eylles/pywal16 | neovim | uZer/pywal16.nvim ◄ |
This colorscheme is compatible with "classic" 16 colors palettes (solarized, molokai, base16, etc.), and has been made to preserve the "red", "green" and "yellow" implicit meanings. Please note that the presaved themes bundled in pywal16 or pywal don't all take profit of the 16 colors. You can find some extra colorschemes in my dotfiles repository.
Pywal.nvim was a reimplementation of pywal.vim totally written in lua, with extra plugin support. Lua is a better choice if you use plugins also written in lua like Telescope or NvimTree that aren't supported by default in wal.vim.
This plugin takes advantage of termguicolors (which was unsupported by wal.vim)
and won't use/declare any ctermbg
or ctermfg
.
using a custom pywal16 colorscheme with 16 different colors, preserving red, yellow and green for error, warn, etc.
using wallpaper generated themes
- NeoVim (checkhealth...)
- BetterWhitespace
- BufferLine
- Coc
- Diff
- Feline
- GitGutter
- GitSigns
- Indent-BlankLine
- Illuminate
- LSP
- LspSaga
- LspTrouble
- Lualine
- Neogit
- NvimTree
- nvim-navic
- Nvim-scrollbar
- Telescope
- Tree-sitter
You can install this plugin with packer:
use { 'uZer/pywal16.nvim', as = 'pywal16' }
With lazy:
{
'uZer/pywal16.nvim',
-- for local dev replace with:
-- dir = '~/your/path/pywal16.nvim',
config = function()
vim.cmd.colorscheme("pywal16")
end,
}
With vim-plug:
Plug 'uZer/pywal16.nvim', { 'as': 'pywal16' }
To enable the theme, call this in your neovim config:
local pywal16 = require('pywal16')
pywal16.setup()
Or with vim script:
colorscheme pywal16
It will set automatically the
vim.opt.termguicolors
to true
Place this in your lualine config:
local lualine = require('lualine')
lualine.setup {
options = {
theme = 'pywal16-nvim',
},
}
You can put this to your config to activate the feline config:
local present, feline = pcall(require, 'feline')
if not present then
return
end
local present, pywal16_feline = pcall(require, 'pywal16.feline')
if not present then
return
end
feline.setup({
components = pywal16_feline,
})
Then you should see the feline bar working successfully.
If you want to get the colors into a lua dictionary:
local pywal16_core = require('pywal16.core')
local colors = pywal16_core.get_colors()
pywal/pywal16 automatically generate a file called colors-wal.vim
in
~/.cache/wal/colors-wal.vim
, it file contains all the colors that are necesary
to works for vim, it files looks like this:
" Special
let wallpaper = "/home/user/Pictures/winter-purple.jpg"
let background = "#110914"
let foreground = "#e3cfe2"
let cursor = "#e3cfe2"
" Colors
let color0 = "#110914"
let color1 = "#A378B6"
let color2 = "#B687AD"
let color3 = "#D9A2AF"
let color4 = "#F8DDAD"
let color5 = "#AD90CF"
let color6 = "#D2ACD6"
let color7 = "#e3cfe2"
let color8 = "#9e909e"
let color9 = "#A378B6"
let color10 = "#B687AD"
let color11 = "#D9A2AF"
let color12 = "#F8DDAD"
let color13 = "#AD90CF"
let color14 = "#D2ACD6"
let color15 = "#e3cfe2"
The theme only reads it files variables and then create a colors dictionary to create a theme based in it's colors
Feel free to modify anything you want in this theme on your own fork, or to open PR if you want to add and/or change some features on this one. I changed most of the initial colors, added some plugin support and highlights, but mostly didn't touch the original files.
dylanaraps (pywal)
eylles (pywal16)
AlphaTechnolog (original pywal.nvim)
Contributors
If you like this work you can give it a star :)