diff options
author | jao <jao@gnu.org> | 2023-06-14 02:06:28 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2023-06-14 02:06:28 +0100 |
commit | af445a19fc266d599f99e2a0ea995b72f3282156 (patch) | |
tree | efe3f87cb314e10c030de478a4ccf26c31860b38 | |
parent | f10bc2a1a9f50b00e854b1161f49610cc6bd298f (diff) | |
download | elibs-af445a19fc266d599f99e2a0ea995b72f3282156.tar.gz elibs-af445a19fc266d599f99e2a0ea995b72f3282156.tar.bz2 |
oops
-rw-r--r-- | init.el | 30 |
1 files changed, 14 insertions, 16 deletions
@@ -1,13 +1,6 @@ ;; -*- lexical-binding: t; -*- ;;; Initialisation -;;;; custom location of custom.el and co. -(setq custom-file (jao-site-el "custom")) -(load custom-file) -(setq custom-unlispify-tag-names nil) -(setq custom-buffer-done-kill t) -(setq custom-raised-buttons nil) - ;;;; Bootstrap and use package (defvar jao-emacs-dir (expand-file-name "~/etc/emacs")) @@ -89,6 +82,13 @@ (require 'info) (add-to-list 'Info-directory-list jao-info-dir) +;;;; custom location of custom.el and co. +(setq custom-file (jao-site-el "custom")) +(load custom-file) +(setq custom-unlispify-tag-names nil) +(setq custom-buffer-done-kill t) +(setq custom-raised-buttons nil) + ;;; Preamble ;;;; preamble (pre.el) (jao-load-site-el "pre") @@ -1111,11 +1111,11 @@ (setq ispell-personal-dictionary (expand-file-name "~/.emacs.d/ispell.dict")) -(use-package wordreference - :ensure t - :init (setq wordreference-target-lang "es" - wordreference-source-lang "en") - :bind (("C-c D" . wordreference-search))) +;; (use-package wordreference +;; :ensure t +;; :init (setq wordreference-target-lang "es" +;; wordreference-source-lang "en") +;; :bind (("C-c D" . wordreference-search))) ;;;; markdown (use-package markdown-mode @@ -1642,7 +1642,8 @@ :init (setq eshell-directory-name "~/.emacs.d/eshell" eshell-hist-ignoredups 'erase - eshell-error-if-no-glob t) + eshell-history-size 1000000 + eshell-error-if-no-glob nil) (defun jao-eshell--outline () (setq-local outline-regexp eshell-prompt-regexp)) @@ -1753,9 +1754,6 @@ :ensure t :hook (eshell-mode . jao-eshell--set-up-completion)) -;;;;; history -(setq eshell-history-size 10000) - ;;;;; toggle (use-package jao-eshell-here :demand t |