-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathvariables.el
31 lines (28 loc) · 1.04 KB
/
variables.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
(defvar se2/variable/color-theme
'overcast)
(defvar se2/variable/font-default-family
"Liberation Mono")
(defvar se2/variable/font-default-height
150)
(defvar se2/variable/font-family-for-programming
"Fira Code")
;; TODO: Improve this, turn it into a simpler form
(defvar se2/variable/frame-dimensions
'(100 . 30))
(defvar se2/variable/configured-irc-connections
#s(hash-table
size 3
test equal
data (
"LiberaChat" (lambda (password)
(erc-tls :server "irc.libera.chat"
:port 6697
:nick "shepard"
:full-name "Commander Shepard"
:password password))
"Freenode" (lambda (password)
(erc-tls :server "irc.freenode.net"
:port 6697
:nick "shepard"
:full-name "Commander Shepard"
:password password)))))