Skip to content

Commit

Permalink
Don't shade away the Zen mode backdrop
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjuda committed Dec 29, 2024
1 parent eceddd0 commit ea05a62
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions config/nvim/lua/aj/pkg_settings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,14 @@ local setup_all = function()
-------------------
require("zen-mode").setup {
window = {
-- Use just a little over the standard 80 line char limit to acount for
-- the line numbers.
width = 90,
-- We can also use a fraction of the outer window size.
-- Use just a little over the standard 80 line char limit to account
-- for the line numbers. We can also use a fraction of the outer
-- window size.
-- width = 0.85,
width = 90,
-- Don't shade the backgrop of the Zen window.
-- backdrop = 0.95,
backdrop = 1.0
},
}

Expand Down

0 comments on commit ea05a62

Please sign in to comment.