aboutsummaryrefslogtreecommitdiffstats
path: root/oni/home/services/emacs/init.el
blob: 629e0290680fa896ef014a0da4a1187314d4b4cb (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
;;; init.el --- ryuslash's init                      -*- lexical-binding: t; -*-

;; Copyright (C) 2023  Tom Willemse

;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local

;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.

;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with this program.  If not, see <https://www.gnu.org/licenses/>.

;;; Commentary:

;; This is my Emacs' init file.

;;; Code:

(require 'oni-core)
(require 'oni-gui)

(add-to-list
 'auto-save-file-name-transforms
 `(,(rx (zero-or-more any))
   ,(concat (or (getenv "XDG_DATA_HOME")
                (expand-file-name "~/.local/share"))
            "/emacs/auto-save-list")
   t)
 t)

(eval-when-compile (require 'ispell))
(with-eval-after-load 'ispell
  (setq ispell-program-name "hunspell"
        ispell-really-hunspell t))

(defun oni-in-word-p ()
  "Check whether the character just typed was part of a word."
  (save-excursion
    (backward-char)
    (looking-back (rx word) (1- (point)))))

(with-eval-after-load 'electric
  (add-hook 'electric-quote-inhibit-functions #'oni-in-word-p))

(add-to-list 'load-path (expand-file-name "~/projects/inkplate"))
(when (require 'inkplate nil t)
  (let ((my-dev (inkplate-open "/dev/ttyUSB0")))

    (inkplate-clear-screen my-dev)
    (inkplate-set-cursor my-dev 280 100)

    (inkplate-set-text-size my-dev 10)
    (inkplate-print my-dev (inkplate--convert-string-to-hex (format-time-string "%Y")))

    (inkplate-set-cursor my-dev 275 180)
    (inkplate-set-text-size my-dev 8)
    (inkplate-print my-dev (inkplate--convert-string-to-hex (format-time-string "%m-%d")))

    (inkplate-draw-rectangle my-dev 270 90 250 155 3)
    (inkplate-draw-rectangle my-dev 269 89 252 157 3)
    (inkplate-draw-rectangle my-dev 268 88 254 159 3)

    (inkplate-partial-update my-dev)
    ;; It doesn't seem to update properly unless I send the same update twice.
    (inkplate-partial-update my-dev)
    (inkplate-send my-dev)

    (delete-process (inkplate-device-process my-dev))))

(setq custom-file "~/.config/emacs/custom.el")
(load custom-file)

(provide 'init)
;;; init.el ends here