# HG changeset patch # User Meredith Howard # Date 1678387511 21600 # Node ID 911aa9d81e711ed424bc79fe03ff8b947a7f3511 # Parent 68ed15b14844d5c2785261397966199d5eba939c Switch to kanagawa until themer's jellybeans is fixed diff --git a/.config/nvim/lua/lazy-bootstrap.lua b/.config/nvim/lua/lazy-bootstrap.lua --- a/.config/nvim/lua/lazy-bootstrap.lua +++ b/.config/nvim/lua/lazy-bootstrap.lua @@ -13,12 +13,34 @@ vim.opt.rtp:prepend(vim.env.LAZY or lazy require("lazy").setup({ spec = { + -- { + -- "themercorp/themer.lua", + -- priority = 1000, + -- opts = { + -- -- colorscheme = "jellybeans", + -- }, + -- }, { - "themercorp/themer.lua", + "rebelot/kanagawa.nvim", priority = 1000, opts = { - colorscheme = "jellybeans", + keywordStyle = { italic = false }, + statementStyle = { bold = false }, + colors = { + theme = { + all = { + ui = { + bg = "none", + bg_gutter = "none", + }, + }, + }, + }, }, + config = function(_, opts) + require("kanagawa").setup(opts) + vim.cmd("colorscheme kanagawa") + end, }, { import = "plugins" }, },