Compare commits

...

2 commits

Author SHA1 Message Date
510e8a777a
emacs: Set remote shell for hass so eglot works
Some checks failed
/ check (push) Failing after 1h25m18s
2024-02-06 09:45:02 +01:00
78456aeee5
firefox: Workarounds so Google Meet works properly 2024-02-06 09:44:34 +01:00
2 changed files with 14 additions and 0 deletions

View file

@ -896,6 +896,15 @@ Enable [[https://github.com/BurntSushi/ripgrep][ripgrep]] support
(rg-enable-default-bindings))
#+end_src
** TRAMP
Set some connection properties
#+begin_src emacs-lisp
(add-to-list 'tramp-connection-properties
(list (regexp-quote "/sshx:hass:")
"remote-shell" "/bin/bash"))
#+end_src
** Git
Magit. Obviously.

View file

@ -16,8 +16,13 @@ let
"gfx.webrender.all" = true;
"image.avif.enabled" = true;
"image.webp.enabled" = true;
"media.encoder.webm.enabled" = true;
"media.ffmpeg.encoder.enabled" = true;
"media.ffmpeg.vaapi.enabled" = true;
"media.rdd-ffmpeg.enabled" = true;
"media.webrtc.platformencoder" = true;
"media.webrtc.platformencoder.sw_only" = false;
"media.webrtc.software_encoder.fallback" = true;
"privacy.webrtc.allowSilencingNotifications" = true;
"privacy.webrtc.legacyGlobalIndicator" = false;
"security.tls.enable_0rtt_data" = false;