X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/98d233d6519e0470c997013a64f2e5490560b01d..fd7becb4132bab74a9c216144bd6d52c787c74d8:/nvim/lua/plugins/colorscheme.lua diff --git a/nvim/lua/plugins/colorscheme.lua b/nvim/lua/plugins/colorscheme.lua index 613df5e..8e1ae25 100644 --- a/nvim/lua/plugins/colorscheme.lua +++ b/nvim/lua/plugins/colorscheme.lua @@ -2,8 +2,8 @@ return { { "LazyVim", - opts = { colorscheme = "catppuccin-mocha" }, - dependencies = { "catppuccin" }, + opts = { colorscheme = "onenord" }, + dependencies = { "onenord.nvim" }, }, { -- this meta plugin can be used to install all colorschemes to test with telescope @@ -65,7 +65,17 @@ return { }, }, }, - { "shaunsingh/nord.nvim"}, + { + "shaunsingh/nord.nvim", + dev = true, + init = function() + vim.g.nord_contrats = true + vim.g.nord_borders = true + vim.g.nord_bold = false + vim.g.nord_uniform_diff_background = false + vim.g.nord_disable_background = false + end, + }, -- conflicts with above -- { "gbprod/nord.nvim"}, },