Neovim added leap plugin

Rewritten and moved portable module
Updated background
Disabled garnix substitutor
Small changes to greetd
This commit is contained in:
Jurn Wubben 2025-06-23 20:10:15 +02:00
parent b524030089
commit a46e31e783
14 changed files with 131 additions and 31 deletions

View file

@ -41,11 +41,12 @@
providers.wl-copy.enable = true;
registers = "unnamedplus";
};
options.shiftwidth = 2;
binds = {
whichKey.enable = true;
cheatsheet.enable = true;
};
options.shiftwidth = 2;
languages = {
enableFormat = true; #You can also manually overwrite each language.
enableTreesitter = true;
@ -120,7 +121,16 @@
colorizer.enable = true;
smartcolumn. enable = true;
};
utility.vim-wakatime.enable = true;
utility = {
vim-wakatime.enable = true;
motion.leap = {
enable = true;
mappings = {
leapForwardTo = "f";
leapBackwardTo = "F";
};
};
};
visuals = {
nvim-web-devicons.enable = true;
nvim-cursorline.enable = true;

View file

@ -23,7 +23,7 @@
++ lib.optionals osConfig.niksos.bluetooth [
pkgs.ear2ctl
]
++ lib.optionals osConfig.niksos.portable [
++ lib.optionals osConfig.niksos.portable.enable [
inputs.somcli.defaultPackage.${pkgs.system}
];
}

View file

@ -115,8 +115,9 @@ in {
"Super, s, exec, ${torzu}"
"Super, d, exec, ${dolphin}"
])
++ lib.optionals portable [
++ lib.optionals portable.enable [
"$m Shift, S, exec, ${somcli}"
", XF86AudioMedia, exec, powermode toggle"
];
bindl = [

View file

@ -21,10 +21,12 @@ in {
"QT_WAYLAND_DISABLE_WINDOWDECORATION,1"
"NIXOS_OZONE_WL,1"
];
exec-once = [
"${uwsm} finalize"
"${hyprlock}" # Lock screen
];
exec-once =
[
"${uwsm} finalize"
"${hyprlock}" # Lock screen
]
++ lib.optional osConfig.niksos.portable.enable "powermode sync";
};
};
}