From f9a7c9ae52d2371e6907238ded2c2b9cf52a3001 Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Wed, 7 Jan 2026 04:53:57 +0530 Subject: [PATCH] feat(hyprland): optimize animation timings feat(neovim): add tv plugin and remove markdown-preview --- home/services/hyprland.nix | 8 ++++---- neovim/default.nix | 24 +++++++++--------------- 2 files changed, 13 insertions(+), 19 deletions(-) diff --git a/home/services/hyprland.nix b/home/services/hyprland.nix index 04fe932f..356aa3d1 100644 --- a/home/services/hyprland.nix +++ b/home/services/hyprland.nix @@ -125,12 +125,12 @@ bezier = "myBezier, 0.05, 0.9, 0.1, 1.05"; animation = [ - "windows, 1, 7, myBezier" - "windowsOut, 1, 7, default, popin 80%" + "windows, 1, 2, myBezier" + "windowsOut, 1, 2, default, popin 80%" "border, 1, 10, default" "borderangle, 1, 8, default" - "fade, 1, 7, default" - "workspaces, 1, 6, default" + "fade, 1, 2, default" + "workspaces, 1, 2, default" ]; }; diff --git a/neovim/default.nix b/neovim/default.nix index b5ea41fa..5a646a81 100644 --- a/neovim/default.nix +++ b/neovim/default.nix @@ -330,21 +330,6 @@ in { settings.image_provider = "image.nvim"; }; - # markdown-preview = { - # enable = true; - # package = pkgs.vimUtils.buildVimPlugin { - # pname = "markdown-preview.nvim"; - # version = "0.0.10-unstable-2026-1-4"; - # src = pkgs.fetchFromGitHub { - # owner = "iamcco"; - # repo = "markdown-preview.nvim"; - # rev = "a923f5fc5ba36a3b17e289dc35dc17f66d0548ee"; - # hash = "sha256-TBXdG/Ih5DusAYZJyn37zVqHcMD85VkjrCoLyTo/KBg="; - # }; - # patches = [../patches/markdown-preview.patch]; - # }; - # }; - noice = { enable = true; settings = { @@ -418,6 +403,15 @@ in { }; }; + tv = { + enable = true; + settings = { + global_keybindings = { + channels = "tv"; + }; + }; + }; + fidget = { enable = true; settings.notification.override_vim_notify = true;