Don't want to list everything, a ton of stuff 🥁
This commit is contained in:
parent
f05ee0a658
commit
86fc4d7f9f
17 changed files with 492 additions and 70 deletions
|
@ -23,7 +23,7 @@
|
|||
octolinker
|
||||
org-capture
|
||||
browserpass
|
||||
bypass-paywalls-clean
|
||||
# bypass-paywalls-clean
|
||||
ghosttext # or edit-with-emacs?
|
||||
# fx_cast # TODO make PR to rycee NUR repo
|
||||
];
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
config,
|
||||
...
|
||||
}: let
|
||||
settings = config.programs.qutebrowser.settings;
|
||||
inherit (config.programs.qutebrowser) settings;
|
||||
websites = {
|
||||
searx = "https://searx.be";
|
||||
};
|
||||
|
@ -69,7 +69,7 @@ in {
|
|||
};
|
||||
odd = {
|
||||
bg = lighter-gray;
|
||||
fg = settings.colors.tabs.even.fg;
|
||||
inherit (settings.colors.tabs.even) fg;
|
||||
};
|
||||
};
|
||||
completion = {
|
||||
|
|
|
@ -131,7 +131,12 @@
|
|||
[ $TERM = "dumb" ] && unsetopt zle && PS1='$ ' # for Emacs TRAMP mode
|
||||
'';
|
||||
initExtra = ''
|
||||
# Don't enable VIM emulation when in Emacs
|
||||
[[ -z $INSIDE_EMACS ]] && source ${pkgs.zsh-vi-mode}/share/zsh-vi-mode/zsh-vi-mode.plugin.zsh
|
||||
|
||||
# When enabling starship, home-manager add an `initExtra` rule to disable it when in Emacs but not with VTerm,
|
||||
# since I use also `eat` besides `vterm` the following line is needed
|
||||
[[ "$INSIDE_EMACS" =~ "eat" ]] && eval "$(${config.home.profileDirectory}/bin/starship init zsh)"
|
||||
'';
|
||||
};
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
enable = true;
|
||||
wrapperFeatures.gtk = true;
|
||||
config = {
|
||||
modifier = modifier;
|
||||
inherit modifier;
|
||||
menu = "${pkgs.fuzzel}/bin/fuzzel --background-color=253559cc --border-radius=5 --border-width=0";
|
||||
output = let
|
||||
bg = "${./wallpaper.svg} fill";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue