¶News
Check out the latest improvements to vc-mode in Emacs 31
https://www.emacswiki.org/emacs/EmacsThirtyOneHighlights#h5o-4
FOSDEM is this weekend!
Check out live streams of talks from various folks we know in the Declarative and Minimalistic Computing Room:
https://fosdem.org/2026/schedule/track/declarative-and-minimalistic-computing/ https://fosdem.org/2026/schedule/streaming/
¶Let’s Learn More About Tmux
- wiki: https://github.com/tmux/tmux/wiki
- command listing: http://man.openbsd.org/OpenBSD-current/man1/tmux.1#COMMANDS
- Advanced Use: https://github.com/tmux/tmux/wiki/Advanced-Use
- cheat sheet: https://tmuxcheatsheet.com/
- using popups: https://tmuxai.dev/tmux-popup/
¶Useful Commands
# Create new session at a particular folder path (thanks jvdydev!) tmux new-session -A -c <working-directory> -s <session-name> # Run a command inside of the new session tmux new-session -A -c <working-directory> -s <session-name> emacs -nw # See also: https://codeberg.org/jvdydev/dotfiles/src/branch/main/scripts/ts
