WIP: Switch to NixOS #5

Draft
FunctionalHacker wants to merge 1349 commits from nix into main
3 changed files with 11 additions and 3 deletions
Showing only changes of commit 384f2752ab - Show all commits

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