Compare commits

..

2 commits

Author SHA1 Message Date
Pedro Rey Anca e8b66385c9
Improve ZSH experience 2025-05-03 20:52:48 +02:00
Pedro Rey Anca 2b7a75aa97
Remove I still don't care about cookies 2025-05-03 11:36:16 +02:00
4 changed files with 22 additions and 13 deletions

View file

@ -34,7 +34,6 @@
libredirect libredirect
multi-account-containers multi-account-containers
clearurls clearurls
istilldontcareaboutcookies
hoppscotch hoppscotch
]; ];
bookmarks = {}; bookmarks = {};

View file

@ -8,6 +8,8 @@
programs.kitty = { programs.kitty = {
enable = true; enable = true;
shellIntegration.enableZshIntegration = true;
themeFile = "Catppuccin-Mocha"; themeFile = "Catppuccin-Mocha";
font = { font = {
@ -41,10 +43,6 @@
"alt+2" = "goto_tab 2"; "alt+2" = "goto_tab 2";
"alt+3" = "goto_tab 3"; "alt+3" = "goto_tab 3";
"alt+4" = "goto_tab 4"; "alt+4" = "goto_tab 4";
## Unbind
"ctrl+shift+left" = "no_op";
"ctrl+shift+right" = "no_op";
}; };
}; };
} }

View file

@ -23,6 +23,7 @@ xdg.mimeApps.enable = true;
distrobox distrobox
boxbuddy boxbuddy
evince # gnome pdf viewer evince # gnome pdf viewer
eza # cool ls
element-desktop # Matrix client element-desktop # Matrix client
fd # find replacement fd # find replacement
file # Show file information file # Show file information
@ -92,5 +93,10 @@ wtype
xdg-utils xdg-utils
xxd xxd
alejandra alejandra
# VPN
wireguard-tools
openconnect
networkmanager-openconnect
]; ];
} }

View file

@ -34,6 +34,7 @@
findw = "grep -rl"; findw = "grep -rl";
pdf = "tdf"; pdf = "tdf";
open = "xdg-open"; open = "xdg-open";
find = "fd";
l = "eza --icons -a --group-directories-first -1"; #EZA_ICON_SPACING=2 l = "eza --icons -a --group-directories-first -1"; #EZA_ICON_SPACING=2
ll = "eza --icons -a --group-directories-first -1 --no-user --long"; ll = "eza --icons -a --group-directories-first -1 --no-user --long";
@ -71,6 +72,11 @@
# python # python
piv = "python -m venv .venv"; piv = "python -m venv .venv";
psv = "source .venv/bin/activate"; psv = "source .venv/bin/activate";
# ssh
s = "kitten ssh";
ssh = "kitten ssh";
ossh = "ssh";
}; };
}; };