mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-17 16:21:12 +02:00
many theme changes
This commit is contained in:
parent
2730fd29b8
commit
b9199efb56
9 changed files with 102 additions and 35 deletions
|
@ -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,
|
||||
}
|
||||
|
||||
|
|
1
lua/custom/plugins/ir_black.lua
Normal file
1
lua/custom/plugins/ir_black.lua
Normal file
|
@ -0,0 +1 @@
|
|||
return { 'kemiller/vim-ir_black' }
|
|
@ -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 ...
|
||||
|
|
3
lua/custom/plugins/nightfox.lua
Normal file
3
lua/custom/plugins/nightfox.lua
Normal file
|
@ -0,0 +1,3 @@
|
|||
return {
|
||||
'EdenEast/nightfox.nvim',
|
||||
}
|
|
@ -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 },
|
||||
-- },
|
||||
--
|
||||
}
|
||||
|
|
1
lua/custom/plugins/tairiki.lua
Normal file
1
lua/custom/plugins/tairiki.lua
Normal file
|
@ -0,0 +1 @@
|
|||
return { 'deparr/tairiki.nvim'}
|
1
lua/custom/plugins/tomorrow-night.lua
Normal file
1
lua/custom/plugins/tomorrow-night.lua
Normal file
|
@ -0,0 +1 @@
|
|||
return { 'chriskempson/vim-tomorrow-theme' }
|
Loading…
Add table
Add a link
Reference in a new issue