-
Notifications
You must be signed in to change notification settings - Fork 1
/
calc.el
20 lines (18 loc) · 846 Bytes
/
calc.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
;;; Mode settings stored by Calc on Mon Mar 16 23:21:51 2020
(setq calc-incomplete-algebraic-mode t)
(setq calc-full-trail-vectors nil)
(setq calc-always-load-extensions t)
(setq calc-highlight-selections-with-faces t)
;;; End of mode settings
;;; Custom units stored by Calc on Thu Nov 7 22:22:54 2019
(setq math-additional-units '(
(GiB "1024 * MiB" "Giga Byte")
(MiB "1024 * KiB" "Mega Byte")
(KiB "1024 * B" "Kilo Byte")
(B nil "Byte")
(Gib "1024 * Mib" "Giga Bit")
(Mib "1024 * Kib" "Mega Bit")
(Kib "1024 * b" "Kilo Bit")
(b "B / 8" "Bit")
))
;;; End of custom units