From: Samir Benmendil Date: Tue, 2 May 2023 22:18:41 +0000 (+0100) Subject: nvim/colorscheme: default to onenord X-Git-Url: https://git.rmz.io/dotfiles.git/commitdiff_plain/b305ea33a0a88f1a6c9cae60c1dd169bca04afd1 nvim/colorscheme: default to onenord Seems nord is a little broken when indent-blankline interracts with diff. --- 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"}, }, }, }