Compare commits

..

No commits in common. "b6c9f2db01645705312f83c85a3dbe607c707485" and "b696b9adddb0235bb0ebee61645f7d48a0998e1a" have entirely different histories.

3 changed files with 6 additions and 30 deletions

View File

@ -3,7 +3,6 @@
"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

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