Switch to kanagawa until themer's jellybeans is fixed

Thu, 09 Mar 2023 12:45:11 -0600

author
Meredith Howard <mhoward@roomag.org>
date
Thu, 09 Mar 2023 12:45:11 -0600
changeset 1073
911aa9d81e71
parent 1072
68ed15b14844
child 1074
91b42a87c3d9

Switch to kanagawa until themer's jellybeans is fixed

.config/nvim/lua/lazy-bootstrap.lua file | annotate | diff | comparison | revisions
--- 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" },
   },

mercurial