logseq/config/config.edn (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
;; This global config file applies a configuration to all graphs. Any config
;; keys from a graph's logseq/config.edn can used here. A graph's
;; logseq/config.edn overrides config keys in this file except for maps which
;; are merged. As an example of merging, the following global and local configs:
;; {:shortcuts {:ui/toggle-theme "t z"}}
;; {:shortcuts {:ui/toggle-brackets "t b"}}
;;
;; would result in the final config:
;; {:shortcuts {:ui/toggle-theme "t z"
;; :ui/toggle-brackets "t b"}}
{:start-of-week 0 ;; week starts on Monday
:shortcuts {:auto-complete/complete ["enter" "tab"]
:whiteboard/bring-forward ["close-square-bracket" "ctrl+o"]
:editor/backward-kill-word ["ctrl+w"]
:window/close []}}
|