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"
|
program = "/bin/zsh"
|
||||||
|
|
||||||
[window]
|
[window]
|
||||||
decorations = "full"
|
decorations = "Buttonless"
|
||||||
dynamic_padding = false
|
dynamic_padding = false
|
||||||
dynamic_title = true
|
dynamic_title = true
|
||||||
startup_mode = "Maximized"
|
startup_mode = "Maximized"
|
||||||
opacity = 1.0
|
opacity = 0.8
|
||||||
|
blur = true
|
||||||
|
|
||||||
[window.padding]
|
[window.padding]
|
||||||
x = 2
|
x = 2
|
||||||
|
|
|
@ -1,8 +1,14 @@
|
||||||
|
local config = function()
|
||||||
|
require("gruvbox").setup({
|
||||||
|
transparent_mode = true,
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
return {
|
return {
|
||||||
"ellisonleao/gruvbox.nvim",
|
"ellisonleao/gruvbox.nvim",
|
||||||
lazy = false,
|
lazy = false,
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
opts = {},
|
opts = config,
|
||||||
config = function()
|
config = function()
|
||||||
vim.cmd("colorscheme gruvbox")
|
vim.cmd("colorscheme gruvbox")
|
||||||
end,
|
end,
|
||||||
|
|
Loading…
Add table
Reference in a new issue