diff options
author | colin <colin@cicadas.surf> | 2023-01-21 06:32:25 -0800 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2023-01-21 06:32:25 -0800 |
commit | 5846842b3a94e119b9e930d6fd9e126a2de0cf1e (patch) | |
tree | 7f9e2b7da8bfce7cfc763a8f70930a74b0044b2b | |
parent | 182c7a1f8c18a324da6c4c4e5ca2e37566beecb0 (diff) |
disabled scroll lock key; added stuff for pair programming
-rw-r--r-- | init-el.org | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/init-el.org b/init-el.org index 4ada72a..3c54b91 100644 --- a/init-el.org +++ b/init-el.org @@ -436,6 +436,7 @@ New in emacs 28, native compilation can be enabled: #+name: ui-tweaks-config #+begin_src elisp :results none +(global-unset-key (kbd "<Scroll_Lock>")) (global-unset-key "\C-z") (setq-default indent-tabs-mode nil) (global-hl-line-mode 1) @@ -838,6 +839,7 @@ stand up and move around. #+end_src +* Communication * Reading, Notes, and Writing @@ -1095,6 +1097,7 @@ stand up and move around. (show-paren-mode 1) <<literate-programming>> +<<pair-programming>> <<software-dev-essentials>> <<shell-config>> <<common-lisp-config>> @@ -1113,6 +1116,20 @@ a file whenever it is saved. #+end_src +** Pair-Programming + +#+name: pair-programming +#+begin_src elisp :noweb no-export :results none +<<crdt-config>> +#+end_src + +*** CRDT for pair programming + + +#+name: crdt-config +#+begin_src elisp :results none +(package-install 'crdt) +#+end_src ** Tools Essential To Development |