2019-03-03 15:03:21 -08:00
|
|
|
|
;;; oni-core.el --- Core Emacs configuration -*- lexical-binding: t; -*-
|
|
|
|
|
|
|
|
|
|
;; Copyright (C) 2019 Tom Willemse
|
|
|
|
|
|
|
|
|
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
|
|
|
|
;; Keywords: local
|
2020-12-02 19:06:58 -08:00
|
|
|
|
;; Version: 2020.1202.190437
|
|
|
|
|
;; Package-Requires: (oni-data-dir oni-embrace expand-region multiple-cursors gcmh diminish ws-butler composable which-key)
|
2019-03-03 15:03:21 -08:00
|
|
|
|
|
|
|
|
|
;; 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:
|
|
|
|
|
|
|
|
|
|
;; Core Emacs configuration, doesn't need any requires from within
|
|
|
|
|
;; Emacs. These settings don't seem to go anywhere else.
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2020-10-15 10:09:47 -07:00
|
|
|
|
(require 'diminish)
|
2020-04-30 22:40:45 -07:00
|
|
|
|
(require 'gcmh)
|
2019-03-03 15:03:21 -08:00
|
|
|
|
(require 'oni-data-dir)
|
2020-02-24 22:02:35 -08:00
|
|
|
|
(require 'recentf)
|
2020-10-15 10:30:02 -07:00
|
|
|
|
(require 'ws-butler)
|
2020-12-02 19:06:58 -08:00
|
|
|
|
(require 'which-key)
|
2019-03-03 15:03:21 -08:00
|
|
|
|
|
2019-03-30 12:06:56 -07:00
|
|
|
|
(defconst oni-core--auto-save-directory (oni-data-dir-locate "auto-save-files/")
|
|
|
|
|
"Directory where auto-saves go.")
|
|
|
|
|
|
2019-03-03 15:03:21 -08:00
|
|
|
|
(defalias 'yes-or-no-p 'y-or-n-p)
|
|
|
|
|
|
2020-04-07 21:30:12 -07:00
|
|
|
|
(defvar oni-core--recentf-idle-timer nil
|
|
|
|
|
"Internal variable keeping track of a timer started for ‘recentf-save-list’.")
|
|
|
|
|
|
2019-03-03 15:03:21 -08:00
|
|
|
|
(defun oni-core--switch-newline-keys ()
|
2019-09-18 11:09:58 -07:00
|
|
|
|
"Switch the ‘C-j’ and ‘RET’ keys in the local buffer."
|
2019-03-03 15:03:21 -08:00
|
|
|
|
(if electric-indent-mode
|
|
|
|
|
(progn
|
|
|
|
|
(local-set-key (kbd "C-j") 'newline)
|
|
|
|
|
(local-set-key (kbd "RET") 'electric-newline-and-maybe-indent))
|
|
|
|
|
(local-unset-key (kbd "C-j"))
|
|
|
|
|
(local-unset-key (kbd "RET"))))
|
2019-03-30 12:06:56 -07:00
|
|
|
|
|
|
|
|
|
(defun oni-core--ensure-autosave-directory-exists ()
|
|
|
|
|
"Create the autosave directory if doesn't exist."
|
|
|
|
|
(mkdir oni-core--auto-save-directory t))
|
|
|
|
|
|
2020-04-07 02:09:43 -07:00
|
|
|
|
(defun oni-core-move-beginning-of-dwim ()
|
|
|
|
|
"Move to beginning of line either after indentation or before."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((start (point)))
|
|
|
|
|
(back-to-indentation)
|
|
|
|
|
(unless (/= start (point))
|
|
|
|
|
(move-beginning-of-line 1))))
|
|
|
|
|
|
|
|
|
|
(defun oni-core-move-end-of-dwim ()
|
|
|
|
|
"Move to end of line, either before any comments or after."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((start (point))
|
|
|
|
|
(eolpos (line-end-position)))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(if (and comment-start
|
|
|
|
|
(not (looking-at (regexp-quote comment-start)))
|
|
|
|
|
(comment-search-forward eolpos t))
|
|
|
|
|
(progn
|
|
|
|
|
(search-backward-regexp (concat "[^ \t" comment-start "]"))
|
|
|
|
|
(forward-char)
|
|
|
|
|
(when (or (bolp)
|
|
|
|
|
(= start (point)))
|
|
|
|
|
(end-of-line)))
|
|
|
|
|
(end-of-line))))
|
|
|
|
|
|
2020-04-26 21:45:30 -07:00
|
|
|
|
(defun oni-core-recentf-save-list-silently ()
|
|
|
|
|
"Call ‘recentf-save-list’ but without showing a message about it."
|
|
|
|
|
(let ((inhibit-message t))
|
|
|
|
|
(recentf-save-list)))
|
|
|
|
|
|
2019-03-03 15:03:21 -08:00
|
|
|
|
(add-to-list 'auto-save-file-name-transforms
|
2019-03-30 12:06:56 -07:00
|
|
|
|
`(".*" ,oni-core--auto-save-directory t)
|
|
|
|
|
:append)
|
2019-03-03 15:03:21 -08:00
|
|
|
|
|
|
|
|
|
(setq backup-directory-alist
|
|
|
|
|
`((".*" . ,(oni-data-dir-locate "backup-files"))))
|
|
|
|
|
|
|
|
|
|
(setq auto-save-list-file-prefix
|
|
|
|
|
(oni-data-dir-locate "auto-save-list/.saves-"))
|
|
|
|
|
|
|
|
|
|
(setq abbrev-file-name (oni-data-dir-locate "abbrev_defs"))
|
|
|
|
|
|
2020-02-24 22:02:35 -08:00
|
|
|
|
(setq recentf-save-file (oni-data-dir-locate "recentf"))
|
|
|
|
|
|
2020-01-10 22:46:54 -08:00
|
|
|
|
;;; Get rid of the default help tooltip on the mode-line.
|
|
|
|
|
(setq mode-line-default-help-echo nil)
|
|
|
|
|
|
2019-03-03 15:03:21 -08:00
|
|
|
|
(setq user-full-name "Tom Willemse"
|
|
|
|
|
user-mail-address "tom@ryuslash.org")
|
|
|
|
|
|
|
|
|
|
(setq delete-old-versions t)
|
|
|
|
|
(setq kept-new-versions 20)
|
|
|
|
|
(setq kept-old-versions 20)
|
|
|
|
|
(setq vc-make-backup-files t)
|
|
|
|
|
(setq version-control t)
|
|
|
|
|
(setq require-final-newline t)
|
|
|
|
|
(setq sentence-end-double-space nil)
|
|
|
|
|
(setq inhibit-startup-screen t)
|
|
|
|
|
(setq electric-pair-skip-whitespace 'chomp)
|
2019-09-19 17:40:16 -07:00
|
|
|
|
(setq fit-window-to-buffer-horizontally t)
|
2019-03-03 15:03:21 -08:00
|
|
|
|
|
2020-02-25 10:17:32 -08:00
|
|
|
|
;; Increase the threshold for garbage collection for increased performance.
|
|
|
|
|
;; Apparently there are some (lsp-mode for example) packages that generate a lot
|
|
|
|
|
;; of garbage.
|
|
|
|
|
(setq gc-cons-threshold 100000000)
|
|
|
|
|
|
2020-02-03 22:02:10 -08:00
|
|
|
|
(setq auth-sources (remove "~/.authinfo" auth-sources))
|
|
|
|
|
|
2019-03-03 15:03:21 -08:00
|
|
|
|
(setq-default indent-tabs-mode nil)
|
|
|
|
|
(setq-default tab-width 4)
|
|
|
|
|
(setq-default truncate-lines t)
|
|
|
|
|
(setq-default fill-column 80)
|
|
|
|
|
|
|
|
|
|
(add-hook 'before-save-hook 'time-stamp)
|
|
|
|
|
(add-hook 'electric-indent-local-mode-hook #'oni-core--switch-newline-keys)
|
|
|
|
|
(add-hook 'minibuffer-setup-hook 'electric-pair-local-mode)
|
2019-03-04 23:54:16 -08:00
|
|
|
|
(add-hook 'prog-mode-hook 'goto-address-prog-mode)
|
2019-03-30 12:06:56 -07:00
|
|
|
|
(add-hook 'auto-save-hook #'oni-core--ensure-autosave-directory-exists)
|
2020-04-30 18:27:40 -07:00
|
|
|
|
(add-hook 'after-save-hook 'executable-make-buffer-file-executable-if-script-p)
|
2019-03-03 15:03:21 -08:00
|
|
|
|
|
|
|
|
|
(global-set-key (kbd "C-M-SPC") 'er/expand-region)
|
|
|
|
|
(global-set-key (kbd "M-+") 'mc/mark-next-like-this)
|
|
|
|
|
(global-set-key (kbd "C-c (") 'embrace-commander)
|
2020-02-24 22:02:35 -08:00
|
|
|
|
(global-set-key (kbd "C-x M-f") 'ffap)
|
2019-12-10 22:11:10 -08:00
|
|
|
|
(global-set-key (kbd "C-x C-b") 'ibuffer-jump)
|
2020-04-07 02:09:43 -07:00
|
|
|
|
(global-set-key [remap move-beginning-of-line] #'oni-core-move-beginning-of-dwim)
|
|
|
|
|
(global-set-key [remap move-end-of-line] #'oni-core-move-end-of-dwim)
|
2020-10-19 13:48:09 -07:00
|
|
|
|
(global-set-key (kbd "C-S-n") 'windmove-down)
|
|
|
|
|
(global-set-key (kbd "C-S-p") 'windmove-up)
|
|
|
|
|
(global-set-key (kbd "C-S-f") 'windmove-right)
|
|
|
|
|
(global-set-key (kbd "C-S-b") 'windmove-left)
|
2019-03-03 15:03:21 -08:00
|
|
|
|
|
2019-09-18 11:07:46 -07:00
|
|
|
|
(global-set-key (kbd "C-<left>") 'winner-undo)
|
|
|
|
|
(global-set-key (kbd "C-<right>") 'winner-redo)
|
|
|
|
|
|
2020-04-07 21:30:12 -07:00
|
|
|
|
(unless oni-core--recentf-idle-timer
|
|
|
|
|
(setq oni-core--recentf-idle-timer
|
2020-04-26 21:45:30 -07:00
|
|
|
|
(run-with-idle-timer 10 t #'oni-core-recentf-save-list-silently)))
|
2020-02-24 22:02:35 -08:00
|
|
|
|
|
2020-10-15 10:09:47 -07:00
|
|
|
|
(diminish 'gcmh-mode)
|
2020-10-15 10:30:02 -07:00
|
|
|
|
(diminish 'ws-butler-mode)
|
2020-10-15 10:09:47 -07:00
|
|
|
|
|
2019-03-03 15:03:21 -08:00
|
|
|
|
(electric-indent-mode -1)
|
2019-09-18 11:07:46 -07:00
|
|
|
|
(winner-mode)
|
2020-02-24 22:02:35 -08:00
|
|
|
|
(recentf-mode)
|
2020-04-30 22:40:45 -07:00
|
|
|
|
(gcmh-mode)
|
2020-10-15 10:30:02 -07:00
|
|
|
|
(ws-butler-global-mode)
|
2020-11-13 09:39:53 -08:00
|
|
|
|
(composable-mode)
|
2020-12-02 19:06:58 -08:00
|
|
|
|
(which-key-mode)
|
2019-03-03 15:03:21 -08:00
|
|
|
|
|
2019-09-08 17:26:05 -07:00
|
|
|
|
(add-to-list 'display-buffer-alist
|
2019-09-19 17:39:42 -07:00
|
|
|
|
`(,(rx string-start
|
|
|
|
|
"*" (any ?h ?H) "elp")
|
|
|
|
|
display-buffer-in-side-window
|
2019-09-08 17:26:05 -07:00
|
|
|
|
(side . bottom)
|
|
|
|
|
(slot . 0)
|
|
|
|
|
(window-height . 0.33)))
|
|
|
|
|
|
2019-03-03 15:03:21 -08:00
|
|
|
|
(when (eql system-type 'windows-nt)
|
|
|
|
|
(add-to-list 'load-path (locate-user-emacs-file "vendor/p4-vc"))
|
|
|
|
|
(add-to-list 'exec-path "c:/Program Files/Git/bin")
|
|
|
|
|
(add-to-list 'exec-path "C:/Program Files/Git/usr/bin")
|
|
|
|
|
(add-to-list 'exec-path "c:/cygwin64/bin")
|
|
|
|
|
|
|
|
|
|
(setq delete-by-moving-to-trash t)
|
|
|
|
|
|
|
|
|
|
(setq-default buffer-file-coding-system 'utf-8-unix))
|
|
|
|
|
|
|
|
|
|
;;;###autoload(require 'oni-core)
|
|
|
|
|
|
|
|
|
|
(provide 'oni-core)
|
|
|
|
|
;;; oni-core.el ends here
|