From 4056b0d144ced601bb35d07058237128b791fef0 Mon Sep 17 00:00:00 2001 From: lulusilly Date: Mon, 6 Apr 2026 19:20:44 +0000 Subject: [PATCH] Adding Zen mode to Neovim configuration --- dots/nvim/init.lua | 10 ++++++++++ home.nix | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/dots/nvim/init.lua b/dots/nvim/init.lua index 6cbe098..253f239 100755 --- a/dots/nvim/init.lua +++ b/dots/nvim/init.lua @@ -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. === diff --git a/home.nix b/home.nix index d0e1ec4..c8e8560 100644 --- a/home.nix +++ b/home.nix @@ -26,7 +26,7 @@ epkgs.nix-mode epkgs.nixfmtt ]; - extraConfig = builtins.readFile ; + # extraConfig = builtins.readFile; }; home.sessionVariables = { @@ -81,7 +81,7 @@ oh-my-zsh = { enable = true; plugins = [ "git" ]; - theme = "lambda"; + theme = "half-life"; }; };