X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/b4d8aa6b8678f3751cc262d9a93e585eae5577dd..a427a09b741cecbef21644e1b10c97bd9a074c02:/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"}, },