.config/nvim/lua/lazy-bootstrap.lua

changeset 1073
911aa9d81e71
parent 1064
fcfa295076a8
child 1101
40419d8e3cbb
--- 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