From b305ea33a0a88f1a6c9cae60c1dd169bca04afd1 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Tue, 2 May 2023 23:18:41 +0100 Subject: [PATCH] nvim/colorscheme: default to onenord Seems nord is a little broken when indent-blankline interracts with diff. --- nvim/lua/plugins/colorscheme.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nvim/lua/plugins/colorscheme.lua b/nvim/lua/plugins/colorscheme.lua index 216da0a..b742b4b 100644 --- a/nvim/lua/plugins/colorscheme.lua +++ b/nvim/lua/plugins/colorscheme.lua @@ -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"}, }, }, } -- 2.48.1