Neovim: change to pywal colorscheme

This commit is contained in:
Marko Korhonen 2022-09-08 23:12:49 +03:00
parent 9b617b6f8b
commit 384f2752ab
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890
3 changed files with 11 additions and 3 deletions

View file

@ -1 +0,0 @@
return function() vim.cmd("colorscheme kanagawa") end

View file

@ -20,7 +20,10 @@ require('packer').startup(function()
use {'wbthomason/packer.nvim'} use {'wbthomason/packer.nvim'}
-- Colorscheme -- Colorscheme
use {'rebelot/kanagawa.nvim', config = require('plugins.colorscheme')} use {
'FunctionalHacker/pywal.nvim',
config = function() require('pywal').setup() end
}
-- Statusline -- Statusline
use { use {

View file

@ -1 +1,7 @@
return function() require('lualine').setup() end return function()
require('lualine').setup {
options = {
theme = 'pywal-nvim'
}
}
end