Compare commits
2 Commits
b696b9addd
...
b6c9f2db01
Author | SHA1 | Date | |
---|---|---|---|
b6c9f2db01 | |||
c8d442912f |
|
@ -3,6 +3,7 @@
|
||||||
"blink.cmp": { "branch": "main", "commit": "022521a8910a5543b0251b21c9e1a1e989745796" },
|
"blink.cmp": { "branch": "main", "commit": "022521a8910a5543b0251b21c9e1a1e989745796" },
|
||||||
"bufferline.nvim": { "branch": "main", "commit": "655133c3b4c3e5e05ec549b9f8cc2894ac6f51b3" },
|
"bufferline.nvim": { "branch": "main", "commit": "655133c3b4c3e5e05ec549b9f8cc2894ac6f51b3" },
|
||||||
"conform.nvim": { "branch": "master", "commit": "6feb2f28f9a9385e401857b21eeac3c1b66dd628" },
|
"conform.nvim": { "branch": "master", "commit": "6feb2f28f9a9385e401857b21eeac3c1b66dd628" },
|
||||||
|
"eyeliner.nvim": { "branch": "main", "commit": "8f197eb30cecdf4c2cc9988a5eecc6bc34c0c7d6" },
|
||||||
"fidget.nvim": { "branch": "main", "commit": "d9ba6b7bfe29b3119a610892af67602641da778e" },
|
"fidget.nvim": { "branch": "main", "commit": "d9ba6b7bfe29b3119a610892af67602641da778e" },
|
||||||
"friendly-snippets": { "branch": "main", "commit": "572f5660cf05f8cd8834e096d7b4c921ba18e175" },
|
"friendly-snippets": { "branch": "main", "commit": "572f5660cf05f8cd8834e096d7b4c921ba18e175" },
|
||||||
"gitsigns.nvim": { "branch": "main", "commit": "8bdaccdb897945a3c99c1ad8df94db0ddf5c8790" },
|
"gitsigns.nvim": { "branch": "main", "commit": "8bdaccdb897945a3c99c1ad8df94db0ddf5c8790" },
|
||||||
|
|
20
nvim/dot-config/nvim/lua/plugins/eyeliner.lua
Normal file
20
nvim/dot-config/nvim/lua/plugins/eyeliner.lua
Normal 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,
|
||||||
|
},
|
||||||
|
}
|
|
@ -4,10 +4,16 @@
|
||||||
return {
|
return {
|
||||||
"ellisonleao/gruvbox.nvim",
|
"ellisonleao/gruvbox.nvim",
|
||||||
priority = 1000,
|
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
|
local palette = require("gruvbox").palette
|
||||||
|
|
||||||
require("gruvbox").setup({
|
return {
|
||||||
background = "dark",
|
background = "dark",
|
||||||
italic = {
|
italic = {
|
||||||
strings = false,
|
strings = false,
|
||||||
|
@ -77,9 +83,6 @@ return {
|
||||||
DiagnosticNumInfo = { fg = palette.dark0, bg = palette.bright_blue, bold = true },
|
DiagnosticNumInfo = { fg = palette.dark0, bg = palette.bright_blue, bold = true },
|
||||||
SnacksIndentScope = { fg = palette.light4 },
|
SnacksIndentScope = { fg = palette.light4 },
|
||||||
},
|
},
|
||||||
})
|
}
|
||||||
|
|
||||||
-- Load the colorscheme
|
|
||||||
vim.cmd.colorscheme("gruvbox")
|
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user