From c097b2f0339af1170af07127b9856d203821288b Mon Sep 17 00:00:00 2001 From: Gabriella Bere Date: Wed, 1 Oct 2025 17:21:12 +0100 Subject: [PATCH 1/2] rounded corners in hyprland set them to 10px it looks pretty nice --- home-manager/hyprland.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home-manager/hyprland.nix b/home-manager/hyprland.nix index b89233d..0c31b1d 100644 --- a/home-manager/hyprland.nix +++ b/home-manager/hyprland.nix @@ -52,6 +52,9 @@ general = { gaps_out = 10; }; + decoration = { + rounding = 10; + }; # Allow using SUPER + left click to move windows and SUPER + right click to resize windows bindm = [ From 1583ca07a5679908c576b7cc3a1e76c4c04a477f Mon Sep 17 00:00:00 2001 From: Gabriella Bere Date: Wed, 1 Oct 2025 17:28:55 +0100 Subject: [PATCH 2/2] changed hardtime-nvim to hint instead of block it was annoying me that i couldnt scroll by lazily holding j, so i made it hint instead of blocking me --- home-manager/nvf.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/home-manager/nvf.nix b/home-manager/nvf.nix index 9ff99bd..4fcb4b1 100644 --- a/home-manager/nvf.nix +++ b/home-manager/nvf.nix @@ -13,7 +13,12 @@ telescope.enable = true; # fuzzy finder filetree.neo-tree.enable = true; # filetree binds.cheatsheet.enable = true; # telescope-searchable cheatsheet - binds.hardtime-nvim.enable = true; # stops you using arrow keys for navigation and recommends vim motions + binds.hardtime-nvim = { + enable = true; + setupOpts = { + restriction_mode = "hint"; + }; + }; viAlias = true; vimAlias = true;