diff options
Diffstat (limited to 'init.el')
-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 |