mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
update
This commit is contained in:
parent
c60e87d5ec
commit
ed1e4985fb
4 changed files with 29 additions and 26 deletions
|
@ -14,6 +14,7 @@
|
|||
"fidget.nvim": { "branch": "main", "commit": "9dc6d15fdb877b2fb09ea0ba2dfde9beccb5965a" },
|
||||
"friendly-snippets": { "branch": "main", "commit": "80597f3ea824946c87fd29f82b5ed4f24ef473f3" },
|
||||
"gitsigns.nvim": { "branch": "main", "commit": "bb808fc7376ed7bac0fbe8f47b83d4bf01738167" },
|
||||
"gruvbox-baby": { "branch": "main", "commit": "ea71b4225d0140103d99748ca4a33ecf22c03f62" },
|
||||
"gruvbox.nvim": { "branch": "main", "commit": "7a5c7ace3ac169b2898a4c7d8abec42cf9e18003" },
|
||||
"impatient.nvim": { "branch": "main", "commit": "969f2c5c90457612c09cf2a13fee1adaa986d350" },
|
||||
"indent-blankline.nvim": { "branch": "master", "commit": "8299fe7703dfff4b1752aeed271c3b95281a952d" },
|
||||
|
|
|
@ -30,29 +30,30 @@ return {
|
|||
-- require("user.catppuccin")
|
||||
-- end,
|
||||
-- },
|
||||
{
|
||||
"ellisonleao/gruvbox.nvim",
|
||||
init = function()
|
||||
require("gruvbox").setup({
|
||||
undercurl = true,
|
||||
underline = true,
|
||||
bold = true,
|
||||
italic = true,
|
||||
strikethrough = true,
|
||||
invert_selection = false,
|
||||
invert_signs = false,
|
||||
invert_tabline = false,
|
||||
invert_intend_guides = false,
|
||||
inverse = true, -- invert background for search, diffs, statuslines and errors
|
||||
contrast = "", -- can be "hard", "soft" or empty string
|
||||
palette_overrides = {},
|
||||
overrides = {},
|
||||
dim_inactive = false,
|
||||
transparent_mode = false,
|
||||
})
|
||||
vim.o.background = "dark" -- or "light" for light mode
|
||||
end,
|
||||
},
|
||||
{ "luisiacc/gruvbox-baby" },
|
||||
-- {
|
||||
-- "ellisonleao/gruvbox.nvim",
|
||||
-- init = function()
|
||||
-- require("gruvbox").setup({
|
||||
-- undercurl = true,
|
||||
-- underline = true,
|
||||
-- bold = true,
|
||||
-- italic = true,
|
||||
-- strikethrough = true,
|
||||
-- invert_selection = false,
|
||||
-- invert_signs = false,
|
||||
-- invert_tabline = false,
|
||||
-- invert_intend_guides = false,
|
||||
-- inverse = true, -- invert background for search, diffs, statuslines and errors
|
||||
-- contrast = "", -- can be "hard", "soft" or empty string
|
||||
-- palette_overrides = {},
|
||||
-- overrides = {},
|
||||
-- dim_inactive = false,
|
||||
-- transparent_mode = false,
|
||||
-- })
|
||||
-- vim.o.background = "dark" -- or "light" for light mode
|
||||
-- end,
|
||||
-- },
|
||||
-- { "sainnhe/sonokai" },
|
||||
-- -- { "EdenEast/nightfox.nvim" },
|
||||
-- {
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
-- local colorscheme = "tokyonight"
|
||||
local colorscheme = "gruvbox"
|
||||
-- local colorscheme = "gruvbox"
|
||||
local colorscheme = "gruvbox-baby"
|
||||
-- local colorscheme = "sonokai"
|
||||
-- local colorscheme = "nordfox"
|
||||
-- local colorscheme = "material"
|
||||
|
|
|
@ -43,8 +43,8 @@ local setup = {
|
|||
scroll_up = "<c-u>", -- binding to scroll up inside the popup
|
||||
},
|
||||
window = {
|
||||
-- border = "rounded", -- none, single, double, shadow
|
||||
border = "none", -- none, single, double, shadow
|
||||
border = "rounded", -- none, single, double, shadow
|
||||
-- border = "none", -- none, single, double, shadow
|
||||
position = "bottom", -- bottom, top
|
||||
margin = { 1, 0, 1, 0 }, -- extra window margin [top, right, bottom, left]
|
||||
padding = { 2, 2, 2, 2 }, -- extra window padding [top, right, bottom, left]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue