aboutsummaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d/init.el
blob: 5fa6186fafdac555b5633ca4bca5d4824d7c0df1 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
;;; init.el --- Tom-Emacs Interface                  -*- lexical-binding: t; -*-

;; Copyright (C) 2018  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 <http://www.gnu.org/licenses/>.

;;; Commentary:

;; This is my Emacs configuration. It has gone through many iterations
;; before and may yet go through many more iterations.

;;; Code:

(require 'diminish)         ; To hide minor mode lighters.
(require 'package)          ; To load packages installed through ELPA.

(defalias 'yes-or-no-p 'y-or-n-p)

;;;; Visual initialization:

;; In order to make the change from the default visuals to my
;; preferred setings as quick as possible, I put anything that will
;; have an immediate effect first.

(add-to-list 'custom-theme-load-path
             (locate-user-emacs-file "local-lisp/yoshi-theme"))

(setq inhibit-startup-screen t)

(setq default-frame-alist
      (append default-frame-alist
              '((font . "Fantasque Sans Mono-15")
                (internal-border-width . 15))))

(menu-bar-mode -1)
(tool-bar-mode -1)
(scroll-bar-mode -1)

(load-theme 'yoshi :no-confirm)

;;;; Rest:

(eval-and-compile
  (mapc (lambda (d) (add-to-list 'load-path d))
        (directory-files
         (locate-user-emacs-file "vendor-lisp/") t "^[^.]"))

  (add-to-list 'load-path (locate-user-emacs-file "local-lisp/"))

  (let ((loaddefs (locate-user-emacs-file "local-lisp/autoloads.el")))
    (when (file-exists-p loaddefs)
      (load loaddefs))))

(setq package-archives
      (append package-archives
              '(("melpa" . "https://melpa.org/packages/")
                ("org" . "http://orgmode.org/elpa/"))))

(eval-and-compile (package-initialize))

(defvar init--backup-directory
  (locate-user-emacs-file "data/backup-files/")
  "The location for backup files.")

(defvar init--auto-save-directory
  (locate-user-emacs-file "data/auto-save-files/")
  "The location for auto-save files.")

(defvar init--auto-save-list-prefix
  (locate-user-emacs-file "data/auto-save-list/.saves-")
  "Prefix for auto-save list files.")

(add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))

(add-to-list 'auto-save-file-name-transforms
             `(".*" ,init--auto-save-directory t) :append)

(setq auto-save-list-file-prefix init--auto-save-list-prefix)

(setq backup-directory-alist `((".*" . ,init--backup-directory)))

(setq-default cursor-type '(bar . 2))

(setq indent-tabs-mode nil)

(setq require-final-newline t)

(setq sentence-end-double-space nil)

(setq-default tab-width 4)

(setq-default truncate-lines t)

(setq user-full-name "Tom Willemse")
(setq user-mail-address "tom@ryuslash.org")

(global-set-key (kbd "C-M-SPC") 'er/expand-region)
(global-set-key (kbd "C-c (") 'embrace-commander)
(global-set-key (kbd "C-c m") 'oni-hydra-magit/body)
(global-set-key (kbd "C-c o") 'oni-hydra-org/body)
(global-set-key (kbd "M-+") 'mc/mark-next-like-this)

(global-unset-key (kbd "C-z"))

(show-paren-mode)

;;;; Destroy trailing whitespace:

(require 'destroy-trailing-whitespace)
(global-destroy-trailing-whitespace-mode)

;;;; Ivy:

(require 'ivy)

(ivy-mode)

(diminish 'ivy-mode)

;;;; Counsel:

(require 'counsel)

(setq counsel-find-file-ignore-regexp
      (rx (or (and bos ".")
              (and ".zwc" eos))))

(counsel-mode)

(diminish 'counsel-mode)

;;;; Lazy configurations:

(with-eval-after-load 'bookmark (load "init/oni-bookmark"))
(with-eval-after-load 'align (load "init/oni-align"))
(with-eval-after-load 'browse-url (load "init/oni-browse-url"))

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