Files
beluga/config/init.el
T
Arthur Barraux 3b6c60a49e
Build and Deploy Docs / build (push) Successful in 47s
functional lisp config files
2025-10-02 11:26:18 +02:00

14 lines
407 B
EmacsLisp

(define TAB-LENGTH 2)
(define QUIT-TIMES 1)
(map-key "CTRL-q" editor-quit)
(map-key "CTRL-s" editor-save)
(map-key "ARROW-UP" '(move-cursor "up"))
(map-key "ARROW-DOWN" '(move-cursor "down"))
(map-key "ARROW-RIGHT" '(move-cursor "right"))
(map-key "ARROW-LEFT" '(move-cursor "left"))
(map-key "ENTER" editor-insert-new-line)
(map-key "CTRL-a" move-cursor-beg-line)
(map-key "CTRL-e" move-cursor-end-line)