Compare commits

...

2 commits

Author SHA1 Message Date
1583ca07a5 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
2025-10-01 17:28:55 +01:00
c097b2f033 rounded corners in hyprland
set them to 10px it looks pretty nice
2025-10-01 17:21:12 +01:00
2 changed files with 9 additions and 1 deletions

View file

@ -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 = [

View file

@ -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;