Nvim: fix colorscheme

This commit is contained in:
Marko Korhonen 2022-09-20 19:29:13 +03:00
parent e95ad97aba
commit b0609b2618
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890
2 changed files with 5 additions and 8 deletions

View file

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

View file

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