]> git.rmz.io Git - dotfiles.git/commitdiff
nvim/colorscheme: default to onenord
authorSamir Benmendil <me@rmz.io>
Tue, 2 May 2023 22:18:41 +0000 (23:18 +0100)
committerSamir Benmendil <me@rmz.io>
Sun, 17 Dec 2023 17:23:07 +0000 (17:23 +0000)
Seems nord is a little broken when indent-blankline interracts with
diff.

nvim/lua/plugins/colorscheme.lua

index 216da0aa44fae72413f997aa219cefcfe02ca02d..b742b4bbe046faeacb4bca31e54465965833f36c 100644 (file)
@@ -1,15 +1,12 @@
 ---@type LazyPluginSpec
 return {
-  { "LazyVim", opts = { colorscheme = "nord" } },
+  { "LazyVim", opts = { colorscheme = "onenord" } },
   {
     -- this meta plugin can be used to install all colorschemes to test with telescope
     name = "colorschemes",
     dir = "",
     lazy = true,
     dependencies = {
-      { "shaunsingh/nord.nvim"},
-      -- conflicts with above
-      -- { "gbprod/nord.nvim"},
       {
         -- requires too much configuration to make look good
         "rmehri01/onenord.nvim",
@@ -27,6 +24,9 @@ return {
         end,
       },
       { "folke/tokyonight.nvim" },
+      { "shaunsingh/nord.nvim"},
+      -- conflicts with above
+      -- { "gbprod/nord.nvim"},
     },
   },
 }