29092024
This commit is contained in:
parent
dff4d40b46
commit
341f231742
2 changed files with 10 additions and 3 deletions
|
@ -44,11 +44,12 @@ args = ["-l", "-c", "tmux attach || tmux"]
|
|||
program = "/bin/zsh"
|
||||
|
||||
[window]
|
||||
decorations = "full"
|
||||
decorations = "Buttonless"
|
||||
dynamic_padding = false
|
||||
dynamic_title = true
|
||||
startup_mode = "Maximized"
|
||||
opacity = 1.0
|
||||
opacity = 0.8
|
||||
blur = true
|
||||
|
||||
[window.padding]
|
||||
x = 2
|
||||
|
|
|
@ -1,8 +1,14 @@
|
|||
local config = function()
|
||||
require("gruvbox").setup({
|
||||
transparent_mode = true,
|
||||
})
|
||||
end
|
||||
|
||||
return {
|
||||
"ellisonleao/gruvbox.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
opts = {},
|
||||
opts = config,
|
||||
config = function()
|
||||
vim.cmd("colorscheme gruvbox")
|
||||
end,
|
||||
|
|
Loading…
Add table
Reference in a new issue