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)))
|