Compare commits

...

2 Commits

Author SHA1 Message Date
b6c9f2db01
Added eyeline 2025-06-02 02:34:18 +02:00
c8d442912f
Use opts properly for gruvbox 2025-06-02 02:31:16 +02:00
3 changed files with 30 additions and 6 deletions

View File

@ -3,6 +3,7 @@
"blink.cmp": { "branch": "main", "commit": "022521a8910a5543b0251b21c9e1a1e989745796" },
"bufferline.nvim": { "branch": "main", "commit": "655133c3b4c3e5e05ec549b9f8cc2894ac6f51b3" },
"conform.nvim": { "branch": "master", "commit": "6feb2f28f9a9385e401857b21eeac3c1b66dd628" },
"eyeliner.nvim": { "branch": "main", "commit": "8f197eb30cecdf4c2cc9988a5eecc6bc34c0c7d6" },
"fidget.nvim": { "branch": "main", "commit": "d9ba6b7bfe29b3119a610892af67602641da778e" },
"friendly-snippets": { "branch": "main", "commit": "572f5660cf05f8cd8834e096d7b4c921ba18e175" },
"gitsigns.nvim": { "branch": "main", "commit": "8bdaccdb897945a3c99c1ad8df94db0ddf5c8790" },

View File

@ -0,0 +1,20 @@
-- https://github.com/jinh0/eyeliner.nvim
--- @module "lazy"
--- @type LazySpec
return {
"jinh0/eyeliner.nvim",
dependencies = {
{
"ellisonleao/gruvbox.nvim",
opts = {
overrides = {
EyelinerPrimary = { bold = true, underline = true },
EyelinerSecondary = { underline = true },
},
},
},
},
opts = {
highlight_on_key = true,
},
}

View File

@ -4,10 +4,16 @@
return {
"ellisonleao/gruvbox.nvim",
priority = 1000,
config = function()
config = function(_, opts)
require("gruvbox").setup(opts)
-- Load the colorscheme
vim.cmd.colorscheme("gruvbox")
end,
opts = function()
local palette = require("gruvbox").palette
require("gruvbox").setup({
return {
background = "dark",
italic = {
strings = false,
@ -77,9 +83,6 @@ return {
DiagnosticNumInfo = { fg = palette.dark0, bg = palette.bright_blue, bold = true },
SnacksIndentScope = { fg = palette.light4 },
},
})
-- Load the colorscheme
vim.cmd.colorscheme("gruvbox")
}
end,
}