nvim: zen mode background color adjustment
This commit is contained in:
parent
635b495e0a
commit
ec22006f01
1 changed files with 1 additions and 8 deletions
|
@ -175,7 +175,7 @@ M.zenmode = function()
|
||||||
vim.cmd 'command! ZM ZenMode'
|
vim.cmd 'command! ZM ZenMode'
|
||||||
require("zen-mode").setup {
|
require("zen-mode").setup {
|
||||||
window = {
|
window = {
|
||||||
backdrop = 0.95, -- shade the backdrop of the Zen window. Set to 1 to keep the same as Normal
|
backdrop = 1, -- shade the backdrop of the Zen window. Set to 1 to keep the same as Normal
|
||||||
-- height and width can be:
|
-- height and width can be:
|
||||||
-- * an absolute number of cells when > 1
|
-- * an absolute number of cells when > 1
|
||||||
-- * a percentage of the width / height of the editor when <= 1
|
-- * a percentage of the width / height of the editor when <= 1
|
||||||
|
@ -206,13 +206,6 @@ M.zenmode = function()
|
||||||
gitsigns = { enabled = true }, -- disables git signs
|
gitsigns = { enabled = true }, -- disables git signs
|
||||||
tmux = { enabled = false }, -- disables the tmux statusline
|
tmux = { enabled = false }, -- disables the tmux statusline
|
||||||
},
|
},
|
||||||
-- Functions I could write but I'm probably not going to use
|
|
||||||
-- -- callback where you can add custom code when the Zen window opens
|
|
||||||
-- on_open = function(win)
|
|
||||||
-- end,
|
|
||||||
-- -- callback where you can add custom code when the Zen window closes
|
|
||||||
-- on_close = function()
|
|
||||||
-- end,
|
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
-- <<<
|
-- <<<
|
||||||
|
|
Loading…
Add table
Reference in a new issue