]> git.rmz.io Git - dotfiles.git/commitdiff
nvim/colorscheme: use catppuccin with nord overrides
authorSamir Benmendil <me@rmz.io>
Tue, 2 May 2023 23:48:47 +0000 (00:48 +0100)
committerSamir Benmendil <me@rmz.io>
Sun, 17 Dec 2023 17:36:19 +0000 (17:36 +0000)
Maybe this is the better color. Although still quite colorful.

nvim/lua/plugins/colorscheme.lua

index b742b4bbe046faeacb4bca31e54465965833f36c..613df5eb8d91d8b5363ed47d5ecff12ac4f68f9b 100644 (file)
@@ -1,6 +1,10 @@
 ---@type LazyPluginSpec
 return {
-  { "LazyVim", opts = { colorscheme = "onenord" } },
+  {
+    "LazyVim",
+    opts = { colorscheme = "catppuccin-mocha" },
+    dependencies = { "catppuccin" },
+  },
   {
     -- this meta plugin can be used to install all colorschemes to test with telescope
     name = "colorschemes",
@@ -24,6 +28,43 @@ return {
         end,
       },
       { "folke/tokyonight.nvim" },
+      {
+        "catppuccin/nvim",
+        name = "catppuccin",
+        opts = {
+          color_overrides = {
+            -- https://github.com/catppuccin/nvim/discussions/323#discussioncomment-5760383
+            mocha = {
+              rosewater = "#BF616A",
+              flamingo = "#BF616A",
+              pink = "#B48EAD",
+              mauve = "#B48EAD",
+              red = "#BF616A",
+              maroon = "#BF616A",
+              peach = "#D08770",
+              yellow = "#EBCB8B",
+              green = "#A3BE8C",
+              teal = "#88c0d0",
+              sky = "#88c0d0",
+              sapphire = "#88c0d0",
+              blue = "#81a1c1",
+              lavender = "#81a1c1",
+              text = "#ECEFF4",
+              subtext1 = "#E5E9F0",
+              subtext0 = "#D8DEE9",
+              overlay2 = "#8d9196",
+              overlay1 = "#81858b",
+              overlay0 = "#4C566A",
+              surface2 = "#434C5E",
+              surface1 = "#3B4252",
+              surface0 = "#292e39",
+              base = "#242933",
+              mantle = "#20242d",
+              crust = "#1c2028",
+            },
+          },
+        },
+      },
       { "shaunsingh/nord.nvim"},
       -- conflicts with above
       -- { "gbprod/nord.nvim"},