mirror of
https://github.com/doomemacs/doomemacs.git
synced 2026-02-19 06:12:52 -08:00
Add a collaborative editing module, powered by crdt.el. Ref: https://code.librehq.com/qhong/crdt.el Co-authored-by: Arte Ebrahimi <arteebrahimi@gmail.com>
8 lines
228 B
EmacsLisp
8 lines
228 B
EmacsLisp
;;; tools/collab/config.el -*- lexical-binding: t; -*-
|
|
|
|
(use-package! crdt
|
|
:commands (crdt-share-buffer crdt-connect)
|
|
:init
|
|
(when (featurep! +tunnel)
|
|
(setq crdt-use-tuntox t)
|
|
(setq crdt-tuntox-password-in-url t)))
|