1
0
mirror of https://github.com/Andrey0189/nixos-config-reborn.git synced 2025-09-15 10:06:00 +03:00

no new line for bemoji

This commit is contained in:
andrey_varnavskiy
2024-12-17 19:48:40 +05:00
parent 58b7230b84
commit 3d2b456cc6
2 changed files with 28 additions and 1 deletions

View File

@@ -9,7 +9,7 @@
"$mainMod, D, exec, $menu --show drun"
"$mainMod, P, pseudo,"
"$mainMod, J, togglesplit,"
"$mainMod, E, exec, bemoji -c"
"$mainMod, E, exec, bemoji -cn"
"$mainMod, V, exec, cliphist list | $menu --dmenu | cliphist decode | wl-copy"
"$mainMod, B, exec, pkill -SIGUSR2 waybar"
"$mainMod SHIFT, B, exec, pkill -SIGUSR1 waybar"

View File

@@ -0,0 +1,27 @@
{
programs.ranger = {
enable = true;
mappings = {
e = "edit";
};
settings = {
default_linemode = "devicons2";
};
plugins = [
{
name = "ranger-archives";
src = builtins.fetchGit {
url = "https://github.com/maximtrp/ranger-archives";
};
}
{
name = "ranger-devicons2";
src = builtins.fetchGit {
url = "https://github.com/cdump/ranger-devicons2";
};
}
];
};
}