Color scheme aangepast naar andere kleurenblindenvriendelijke setup

This commit is contained in:
2025-05-25 14:48:30 +02:00
parent 4db19a82b8
commit ca01c1b12d
2 changed files with 30 additions and 22 deletions

View File

@@ -1,5 +1,5 @@
function ColorMyPencils(color)
color = color or "dichromatic"
color = color or "nightfox"
vim.cmd.colorscheme(color)
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
@@ -7,11 +7,20 @@ function ColorMyPencils(color)
end
vim.keymap.set("n", "<leader>c", function() ColorMyPencils() end)
vim.opt.termguicolors = true
return {
"romainl/vim-dichromatic",
name = "dichromatic",
"EdenEast/nightfox.nvim",
name = "nightfox",
lazy = false,
options = {
colorblind = {
enable = true,
severity = {
protan = 1,
},
},
},
config = function()
ColorMyPencils()
end