Compare commits

...

3 Commits

Author SHA1 Message Date
Emi Simpson 784cbeac92
Allow using mypy in coc 2023-02-09 14:22:55 -05:00
Emi Simpson b8eff0ef3c
Turn on web gui for rclone mounts 2023-02-09 14:22:41 -05:00
Emi Simpson 292a66e5c8
Turn on jxl in firefox 2023-02-09 14:22:05 -05:00
3 changed files with 5 additions and 1 deletions

View File

@ -8,6 +8,7 @@ pkgs: {
"browser.cache.disk.capacity" = 536870912; # 1 GiB
"extensions.pocket.enabled" = false;
"browser.eme.ui.enabled" = false; # DRM popup
"image.jxl.enabled" = true;
"browser.aboutConfig.showWarning" = false;
"browser.search.suggest.enabled" = false;

View File

@ -25,7 +25,7 @@ pkgs: {
unlock-rclone = "set -x RCLONE_CONFIG_PASS (pass rclone)";
":qa" = "exit";
":q" = "exit";
"rmount" = "rclone --cache-dir /tmp/rclone-cache mount --vfs-cache-mode full --vfs-cache-max-size 8Gi";
"rmount" = "rclone --rc --rc-web-gui --rc-no-auth --cache-dir /tmp/rclone-cache mount --vfs-cache-mode full --vfs-cache-max-size 8Gi";
};
shellInit = ''
set -x PATH ~/.cargo/bin/ ~/go/bin ~/.local/bin ~/.gem/ruby/*/bin /var/lib/flatpak/exports/bin/ $PATH

View File

@ -222,5 +222,8 @@ in
};
coc.enable = true;
coc.settings = {
"diagnostic-languageserver.filetypes" = {
python = "mypy";
};
};
}