dylanaraps / pywal

🎨 Generate and change color-schemes on the fly.
MIT License
8.4k stars 326 forks source link

vim lightline support? #130

Closed indeedwatson closed 7 years ago

indeedwatson commented 7 years ago

I know pywal has airline support but I recently moved away from it in favor of something more minimal: https://github.com/itchyny/lightline.vim

dylanaraps commented 7 years ago

Done!

Update the vim colorscheme and let me know if you're satisfied. :)

indeedwatson commented 7 years ago

I tried with about 10 wallpapers and it looks fantastic, you're awesome, thanks!

eeshugerman commented 6 years ago

Hello, I'm unable to get this working. I've also tried with airline and that's not working for me either

I'm using neovim, and I checked for set termguicolors but it's not present in ~.config/nvim/init.vim.

Then I realized there's wal.vim so I added

Plugin 'dylanaraps/wal.vim'
colorscheme wal

and did :PluginInstall, but now when I start nvim it says E185: Cannot find color scheme 'wal'

Any pointers? Thanks!

EDIT: realized I had colorscheme wal in the wrong place in my init.vim. Moved it to the proper section and I no longer get the not found error, and the syntax highlighting colors are changed, but the lightline colors are still the same.

EDIT 2: Nevermind, I got it. Had to add let g:lightline = {'colorscheme': 'wombat'} to init.vim

mdnghtt commented 2 years ago

Hey so ik this is very late but im having the same issue everything is working accept that lightline colors arent changing so what should be the colorscheme name in let g:lightline = {'colorscheme': 'colorscheme_name'}

my vimrc

call plug#begin()
Plug 'dylanaraps/wal.vim'
Plug 'itchyny/lightline.vim'
call plug#end()

syntax on
set pastetoggle=<F3>
set number
set laststatus=2
colorscheme wal
let g:lightline = {'colorscheme': 'wal'}