init.el (1266B)
1 (add-to-list 'load-path "~/.config/emacs/lisp/") 2 3 (set-face-attribute 'default nil :font "Hermit" :height 270) 4 (set-face-attribute 'fixed-pitch nil :font "Hermit" :height 270) 5 (set-face-attribute 'variable-pitch nil :font "Hermit" :height 270) 6 7 (global-set-key (kbd "<escape>") 'keyboard-escape-quit) 8 9 (require 'local-theme) 10 (load-theme 'local t) 11 12 (setq enable-recursive-minibuffers t 13 minibuffer-eldef-shorten-default t 14 icomplete-matches-format nil 15 icomplete-show-matches-on-no-input t 16 completion-auto-help nil) 17 (icomplete-vertical-mode) 18 19 (setq org-hide-emphasis-markers t 20 org-src-fontify-natively t 21 org-fontify-quote-and-verse-blocks t 22 org-fontify-whole-heading-line t 23 org-pretty-entities t 24 org-src-tab-acts-natively nil 25 org-edit-src-content-indentation 0 26 org-hide-block-startup nil 27 org-src-preserve-indentation nil 28 org-startup-folded 'content 29 org-startup-with-inline-images t 30 org-cycle-separator-lines 0) 31 32 (setq dired-listing-switches "-laGh1v --time-style=+%F --group-directories-first" 33 search-whitespace-regexp ".*?" 34 isearch-lax-whitespace t 35 vc-follow-symlinks t 36 completion-styles '(partial-completion flex) 37 completion-category-defaults nil)