many theme changes

This commit is contained in:
Tawfeeq 2025-03-27 15:00:09 +01:00
parent 2730fd29b8
commit b9199efb56
9 changed files with 102 additions and 35 deletions

View file

@ -1,19 +1,19 @@
return {
'alexxGmZ/e-ink.nvim',
priority = 1000,
config = function()
-- Set background BEFORE applying colorscheme
vim.opt.background = 'light' -- or 'dark'
local mono = require('e-ink.palette').mono()
vim.api.nvim_set_hl(0, 'Cursor', { bg = mono[16] })
vim.api.nvim_set_hl(0, 'Cursor', { fg = mono[1], bg = mono[16] })
require('e-ink').setup()
vim.cmd.colorscheme 'e-ink'
-- vim.opt.background = 'light' -- or 'dark'
-- local mono = require('e-ink.palette').mono()
-- vim.api.nvim_set_hl(0, 'Cursor', { bg = mono[16] })
-- vim.api.nvim_set_hl(0, 'Cursor', { fg = mono[1], bg = mono[16] })
-- require('e-ink').setup()
-- Get palette AFTER colorscheme setup
local everforest = require('e-ink.palette').everforest()
-- local everforest = require('e-ink.palette').everforest()
-- Target a VALID highlight group
-- vim.api.nvim_set_hl(0, 'Comment', { fg = everforest.purple })
-- vim.api.nvim_set_hl(0, 'CursorColumn', { fg = mono[16] })
-- vim.api.nvim_set_hl(0, 'CursorLine', { fg = mono[16] })
end,
}

View file

@ -0,0 +1 @@
return { 'kemiller/vim-ir_black' }

View file

@ -94,11 +94,11 @@ return {
-- -- Add more groups as necessary
-- },
-- },
-- config = function(_, opts)
-- require('material').setup(opts)
-- vim.cmd 'colorscheme material-palenight'
-- end,
-- priority = 1000,
-- config = function(_, opts)
-- require('material').setup(opts)
-- vim.cmd 'colorscheme material-darker'
-- end,
-- priority = 1000,
-- },
}
-- ... other plugins ...

View file

@ -0,0 +1,3 @@
return {
'EdenEast/nightfox.nvim',
}

View file

@ -1,2 +1,24 @@
return { 'AlexvZyl/nordic.nvim' }
return {
'AlexvZyl/nordic.nvim',
-- lazy = false,
-- priority = 1000,
-- config = function()
-- require('nordic').load()
-- require('nordic').setup({
-- italic_comments = false,
-- italics = false
-- })
-- end,
-- styles = {
--
-- comments = { italic = false }, -- Ensure no italics are set here
-- strings = { italic = false }, -- Ensure no italics are set here
-- keywords = { italic = false }, -- Ensure no italics are set here
-- functions = { italic = false }, -- Ensure no italics are set here
-- variables = { italic = false },
-- operators = { italic = false },
-- types = { italic = false },
-- },
--
}

View file

@ -0,0 +1 @@
return { 'deparr/tairiki.nvim'}

View file

@ -0,0 +1 @@
return { 'chriskempson/vim-tomorrow-theme' }