Adding Zen mode to Neovim configuration

This commit is contained in:
lulusilly 2026-04-06 19:20:44 +00:00
parent cc1e3608ea
commit 4056b0d144
2 changed files with 12 additions and 2 deletions

View file

@ -28,6 +28,16 @@ end
vim.opt.rtp:prepend(lazypath)
-- Setup the plugins you need.
require("lazy").setup({
-- Zen mode
{
"folke/zen-mode.nvim",
opts = {
window = {
backdrop = .9,
width = 150,
}
}
}
-- For background transparency
{ 'xiyaowong/transparent.nvim' },
-- === The colorscheme plugin is specified here. ===