summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2019-12-12 09:16:47 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2019-12-12 09:16:47 +0000
commitbfa0b3bb3ff0f2b0a5adbdd2896ce2d497175872 (patch)
tree4c64af30ab1e6c4b419a085ed96e5bedcf7fe94f
parent9554e6d3da470dca196b6a57c4ad8b8259ddc8e6 (diff)
reverted most of old config
-rw-r--r--configuration.el165
-rw-r--r--configuration.org278
-rw-r--r--custom-settings.el51
-rw-r--r--init.el1
-rw-r--r--savehist20
5 files changed, 237 insertions, 278 deletions
diff --git a/configuration.el b/configuration.el
index 562a81a..25c26bb 100644
--- a/configuration.el
+++ b/configuration.el
@@ -5,81 +5,38 @@
("melpa" . "https://melpa.org/packages/")
("org" . "https://orgmode.org/elpa/")))
-(defvar my-packages '(ac-cider
- ac-js2
- ag
- atomic-chrome
+(defvar my-packages '(
auto-complete
- beacon
- blacken
+ blacken
browse-kill-ring
- cider
- clj-refactor
- clojure-mode
- coffee-mode
- counsel-jq
- comment-tags
darktooth-theme
- dired-narrow
- diminish
- dumb-jump
- edit-indirect
- editorconfig
- elpy
+ elpy
elfeed
elfeed-goodies
- enh-ruby-mode
- erc-image
evil
evil-escape
evil-leader
evil-mc
evil-numbers
evil-surround
- exec-path-from-shell
- forge
flycheck
flycheck-flow
+ helm
go-mode
- hide-mode-line
- ido-vertical-mode
impatient-mode
- ini-mode
- ivy counsel swiper
- json-mode
- js2-mode
- js2-refactor
- js-comint
ledger-mode
lsp-mode
lsp-ui
- lsp-ivy
magit
markdown-mode
- package-lint
- parinfer
pdf-tools
projectile
- py-autopep8
- org
+ py-autopep8
+ org
rainbow-mode
- rjsx-mode
- ob-restclient
- restclient
- robe
- sass-mode
- spacemacs-theme
- spaceline
- smex
- synosaurus
- tide
- visual-fill-column
web-mode
which-key
- writegood-mode
- writeroom-mode
- yaml-mode
- zenburn-theme))
+ ))
(dolist (p my-packages)
(unless (package-installed-p p)
@@ -99,7 +56,8 @@
(tool-bar-mode -1)
(tooltip-mode -1)
(menu-bar-mode -1)
-(add-to-list 'default-frame-alist '(font . "Hack-8"))
+(add-to-list 'default-frame-alist '(font . "Hack-10"))
+(load-theme 'whiteboard)
(if (string< emacs-version
"26.3")
@@ -340,41 +298,70 @@
(setq org-ellipsis "...")
-(ido-mode t)
-(ido-everywhere t)
-(setq ido-enable-flex-matching t)
-
-(ido-vertical-mode 1)
-(setq ido-vertical-define-keys 'C-n-and-C-p-only)
-(setq ido-vertical-show-count t)
-
-(setq enable-recursive-minibuffers t)
-(global-set-key (kbd "<f6>") 'ivy-resume)
-
-(setq ivy-count-format "(%d/%d) ")
-
-(setq ivy-wrap t)
-
-(global-set-key "\C-s" 'swiper)
-
-(global-set-key (kbd "C-x b") 'counsel-ibuffer)
-;; Run `counsel-ag` against the current directory and not against the
-;; whole project
-(global-set-key (kbd "C-c k") '(lambda()
- (interactive)
- (counsel-ag "" default-directory nil nil)))
-(global-set-key (kbd "C-x l") 'counsel-locate)
-(define-key minibuffer-local-map (kbd "C-r") 'counsel-minibuffer-history)
-
-(global-set-key (kbd "M-x") (lambda ()
- (interactive)
- (counsel-M-x "")))
-
-(add-hook 'pdf-view-mode-hook '(lambda()
- (define-key pdf-view-mode-map "\C-s" 'isearch-forward)))
-
-(setq projectile-completion-system 'ivy)
-
-(setq mu4e-completing-read-function 'ivy-completing-read)
-
-(setq synosaurus-choose-method 'ivy-read)
+(require 'helm-config)
+(global-set-key (kbd "C-x b") 'helm-mini)
+(global-set-key (kbd "M-x") 'helm-M-x)
+(global-set-key (kbd "M-y") 'helm-show-kill-ring)
+(global-set-key (kbd "C-c h") 'helm-command-prefix)
+(global-unset-key (kbd "C-x c"))
+(setq helm-M-x-fuzzy-match t)
+(setq helm-buffers-fuzzy-matching t)
+(setq helm-recentf-fuzzy-match t)
+(setq helm-move-to-line-cycle-in-source t)
+(setq helm-scroll-amount 5)
+(setq helm-ff-file-name-history-use-recentf t)
+(helm-mode 1)
+
+(evil-mode t)
+;; Enable "M-x" in evil mode
+(global-set-key (kbd "M-x") 'execute-extended-command)
+
+(global-evil-leader-mode)
+(evil-leader/set-leader ",")
+(evil-leader/set-key
+ "w" 'basic-save-buffer
+ "s" 'flyspell-buffer
+ "b" 'evil-buffer
+ "q" 'evil-quit)
+
+(require 'evil-surround)
+(global-evil-surround-mode 1)
+
+(global-evil-mc-mode 1)
+
+(define-key evil-normal-state-map (kbd "{") 'evil-next-buffer)
+(define-key evil-normal-state-map (kbd "}") 'evil-prev-buffer)
+
+(global-set-key (kbd "C-=") 'evil-numbers/inc-at-pt)
+(global-set-key (kbd "C--") 'evil-numbers/dec-at-pt)
+(define-key evil-normal-state-map (kbd "C-=") 'evil-numbers/inc-at-pt)
+(define-key evil-normal-state-map (kbd "C--") 'evil-numbers/dec-at-pt)
+
+(define-key evil-normal-state-map (kbd "j") 'evil-next-visual-line)
+(define-key evil-normal-state-map (kbd "k") 'evil-previous-visual-line)
+
+(define-key evil-insert-state-map (kbd "C-v") 'evil-visual-paste)
+
+(mapc (lambda (mode)
+ (evil-set-initial-state mode 'emacs)) '(elfeed-show-mode
+ elfeed-search-mode
+ forge-pullreq-list-mode
+ forge-topic-list-mode
+ dired-mode
+ tide-references-mode
+ image-dired-mode
+ image-dired-thumbnail-mode
+ eww-mode))
+
+(define-key evil-normal-state-map (kbd "M-.") nil)
+(define-key evil-normal-state-map (kbd "M-,") nil)
+
+(setq-default evil-escape-delay 0.2)
+(setq-default evil-escape-key-sequence "jk")
+(evil-escape-mode)
+
+(add-hook 'org-mode-hook 'which-key-mode)
+(add-hook 'cider-mode-hook 'which-key-mode)
+
+(setq which-key-allow-evil-operators t)
+(setq which-key-show-operator-state-maps t)
diff --git a/configuration.org b/configuration.org
index 32b000a..9f43b6c 100644
--- a/configuration.org
+++ b/configuration.org
@@ -2,14 +2,6 @@
* Installation
-*Initial*
-
-Emacs configuration is usually done in the home directory in the
-=.emacs.d= folder. This holds true for Unix and Linux systems. For
-Windows, look it up [[https://www.gnu.org/software/emacs/manual/html_node/efaq-w32/Location-of-init-file.html][here]].
-
-=git clone git@github.com:munen/emacs.d.git ~/.emacs.d=
-
*Dependencies*
Emacs dependencies/libraries are managed via the internal [[https://www.gnu.org/software/emacs/manual/html_node/emacs/Packages.html#Packages][package
@@ -30,89 +22,43 @@ eval-buffer=.
#+END_SRC
** Define packages that are to be installed
-
List all used third-party packages. Most will be configured further
down in this file, some are used with the default configuration.
-
#+BEGIN_SRC emacs-lisp
- (defvar my-packages '(ac-cider
- ac-js2
- ag
- atomic-chrome
+ (defvar my-packages '(
auto-complete
- beacon
- blacken
+ blacken
browse-kill-ring
- cider
- clj-refactor
- clojure-mode
- coffee-mode
- counsel-jq
- comment-tags
darktooth-theme
- dired-narrow
- diminish
- dumb-jump
- edit-indirect
- editorconfig
- elpy
+ elpy
elfeed
elfeed-goodies
- enh-ruby-mode
- erc-image
evil
evil-escape
evil-leader
evil-mc
evil-numbers
evil-surround
- exec-path-from-shell
- forge
flycheck
flycheck-flow
+ helm
go-mode
- hide-mode-line
- ido-vertical-mode
impatient-mode
- ini-mode
- ivy counsel swiper
- json-mode
- js2-mode
- js2-refactor
- js-comint
ledger-mode
lsp-mode
lsp-ui
- lsp-ivy
magit
markdown-mode
- package-lint
- parinfer
pdf-tools
projectile
- py-autopep8
- org
+ py-autopep8
+ org
rainbow-mode
- rjsx-mode
- ob-restclient
- restclient
- robe
- sass-mode
- spacemacs-theme
- spaceline
- smex
- synosaurus
- tide
- visual-fill-column
web-mode
which-key
- writegood-mode
- writeroom-mode
- yaml-mode
- zenburn-theme))
+ ))
#+END_SRC
-
** Install packages
#+BEGIN_SRC emacs-lisp
(dolist (p my-packages)
@@ -138,7 +84,8 @@ down in this file, some are used with the default configuration.
(tool-bar-mode -1)
(tooltip-mode -1)
(menu-bar-mode -1)
- (add-to-list 'default-frame-alist '(font . "Hack-8"))
+ (add-to-list 'default-frame-alist '(font . "Hack-10"))
+ (load-theme 'whiteboard)
#+END_SRC
** Gnu Elpa TLS Fix
Emacs 26.1 (for example in Debian Buster) requests the GNU Elpa repo
@@ -598,155 +545,154 @@ Emacs, use =display-line-numbers-mode=, because it's _much_ faster.
;; custom commands on agenda buffer
#+END_SRC
+* Helm
+#+BEGIN_SRC emacs-lisp
+(require 'helm-config)
+(global-set-key (kbd "C-x b") 'helm-mini)
+(global-set-key (kbd "M-x") 'helm-M-x)
+(global-set-key (kbd "M-y") 'helm-show-kill-ring)
+(global-set-key (kbd "C-c h") 'helm-command-prefix)
+(global-unset-key (kbd "C-x c"))
+(setq helm-M-x-fuzzy-match t)
+(setq helm-buffers-fuzzy-matching t)
+(setq helm-recentf-fuzzy-match t)
+(setq helm-move-to-line-cycle-in-source t)
+(setq helm-scroll-amount 5)
+(setq helm-ff-file-name-history-use-recentf t)
+(helm-mode 1)
+#+END_SRC
* Search / Completion
-** =ido=
-
-=ido= means "Interactively Do Things". =ido= has a completion engine
-that's sensible to use everywhere. It is built-in and nice and could
-change a lot of defaults like =find-file= and switching buffers.
-
-It works well while not breaking Emacs defaults.
+* =evil-mode=
+Evil is an extensible Vim layer for Emacs.
+This combines the best of both worlds: VIM being a great text-editor
+with modal editing through semantic commands and Emacs being a LISP
+REPL.
+** Enable Evil
#+BEGIN_SRC emacs-lisp
- (ido-mode t)
- (ido-everywhere t)
- (setq ido-enable-flex-matching t)
+ (evil-mode t)
+ ;; Enable "M-x" in evil mode
+ (global-set-key (kbd "M-x") 'execute-extended-command)
#+END_SRC
-** =ido-vertical-mode=
-
-https://github.com/creichert/ido-vertical-mode.el
-
-=ido-vertical-mode= makes =ido-mode= display vertically.
+** Leader Mode Config
#+BEGIN_SRC emacs-lisp
-(ido-vertical-mode 1)
-(setq ido-vertical-define-keys 'C-n-and-C-p-only)
-(setq ido-vertical-show-count t)
+ (global-evil-leader-mode)
+ (evil-leader/set-leader ",")
+ (evil-leader/set-key
+ "w" 'basic-save-buffer
+ "s" 'flyspell-buffer
+ "b" 'evil-buffer
+ "q" 'evil-quit)
#+END_SRC
-** Ivy/Counsel/Swiper
-
-https://github.com/abo-abo/swiper
+** Evil Surround, emulating tpope's =surround.vim=
-*Ivy*, a generic completion mechanism for Emacs.
-
-*Counsel*, a collection of Ivy-enhanced versions of common Emacs commands.
+#+BEGIN_SRC emacs-lisp
+ (require 'evil-surround)
+ (global-evil-surround-mode 1)
+#+END_SRC
-*Swiper*, an Ivy-enhanced alternative to isearch.
+** Multiple Cursors
+https://github.com/gabesoft/evil-mc
-=Ivy= is an interactive interface for completion in Emacs. Therefore
-it overlaps in functionality with =ido=. While =Ivy= is more powerful,
-it breaks certain standard functionality. So =ido= is enabled globally
-by default and for certain tasks, =Ivy= overrides =ido=.
+=evil-mc= provides multiple cursors functionality for Emacs when used
+with =evil-mode=.
-Emacs uses completion mechanism in a variety of contexts: code, menus,
-commands, variables, functions, etc. Completion entails listing,
-sorting, filtering, previewing, and applying actions on selected
-items. When active, =ivy-mode= completes the selection process by
-narrowing available choices while previewing in the minibuffer.
-Selecting the final candidate is either through simple keyboard
-character inputs or through powerful regular expressions.
+=C-n / C-p= are used for creating cursors, and =M-n / M-p= are used
+for cycling through cursors. The commands that create cursors wrap
+around; but, the ones that cycle them do not. To skip creating a
+cursor forward use =C-t= or =grn= and backward =grp=. Finally use
+=gru= to remove all cursors.
-*** Configuration
+*** Enable =evil-mc= for all buffers
#+BEGIN_SRC emacs-lisp
- (setq enable-recursive-minibuffers t)
- (global-set-key (kbd "<f6>") 'ivy-resume)
+(global-evil-mc-mode 1)
#+END_SRC
-Show total amount of matches and the index of the current match
-
+** Fast switching between buffers
#+BEGIN_SRC emacs-lisp
-(setq ivy-count-format "(%d/%d) ")
+ (define-key evil-normal-state-map (kbd "{") 'evil-next-buffer)
+ (define-key evil-normal-state-map (kbd "}") 'evil-prev-buffer)
#+END_SRC
-Wrap to the first result when on the last result and vice versa.
+** Increment / Decrement numbers
#+BEGIN_SRC emacs-lisp
-(setq ivy-wrap t)
+ (global-set-key (kbd "C-=") 'evil-numbers/inc-at-pt)
+ (global-set-key (kbd "C--") 'evil-numbers/dec-at-pt)
+ (define-key evil-normal-state-map (kbd "C-=") 'evil-numbers/inc-at-pt)
+ (define-key evil-normal-state-map (kbd "C--") 'evil-numbers/dec-at-pt)
#+END_SRC
-Enable =Swiper=
-
+** Use =j/k= for browsing wrapped lines
#+BEGIN_SRC emacs-lisp
- (global-set-key "\C-s" 'swiper)
+ (define-key evil-normal-state-map (kbd "j") 'evil-next-visual-line)
+ (define-key evil-normal-state-map (kbd "k") 'evil-previous-visual-line)
#+END_SRC
-Configure =Counsel=
+** Paste in Visual Mode
#+BEGIN_SRC emacs-lisp
- (global-set-key (kbd "C-x b") 'counsel-ibuffer)
- ;; Run `counsel-ag` against the current directory and not against the
- ;; whole project
- (global-set-key (kbd "C-c k") '(lambda()
- (interactive)
- (counsel-ag "" default-directory nil nil)))
- (global-set-key (kbd "C-x l") 'counsel-locate)
- (define-key minibuffer-local-map (kbd "C-r") 'counsel-minibuffer-history)
-#+END_SRC
-
-Next to counsel, there's also =smex= which is =M-x= combined with
-=ido=. =smex= has a better sorting algorithm than =Counsel= and having
-both installed means that we get the =Counsel= interface with =smex=
-sorting. Best of both worlds.
+ (define-key evil-insert-state-map (kbd "C-v") 'evil-visual-paste)
-By default, =counsel-M-x= starts with a =^=. More often than not, this
-will be in the way of me fuzzy matching a function. Therefore I'll
-start it with an empty string as argument.
+#+END_SRC
+** Disable =evil-mode= for some modes
+ Since Emacs is a multi-purpose LISP REPL, there are many modes that
+ are not primarily (or not at all) centered about text-manipulation.
+ For those, it is reasonable to disable =evil-mode=, because it will
+ bring nothing to the table, but might just shadow some keyboard
+ shortcuts.
#+BEGIN_SRC emacs-lisp
- (global-set-key (kbd "M-x") (lambda ()
- (interactive)
- (counsel-M-x "")))
+ (mapc (lambda (mode)
+ (evil-set-initial-state mode 'emacs)) '(elfeed-show-mode
+ elfeed-search-mode
+ forge-pullreq-list-mode
+ forge-topic-list-mode
+ dired-mode
+ tide-references-mode
+ image-dired-mode
+ image-dired-thumbnail-mode
+ eww-mode))
#+END_SRC
-
-*** Where =Ivy= doesn't work well
-
-**** Overwriting standard Emacs functionality
-
-Some basic features are overwritten when "everything" becomes an =Ivy=
-search buffer. For example:
-
-- When two =dired= buffers are open and files should be copied from
- one to the other, one can use the =up= and =down= keys to toggle the
- destination. When this is a search buffer, it will auto complete for
- all local folders, instead. Since copying files is something I do
- often, this already means I have to disable =Ivy= globally.
-
-- =Tramp= auto-completion doesn't work for me. I'm using =sudo:=, =ssh:=
- and the likes a lot in =dired= mode. Auto completion when within
- =Tramp= is broken for me, so I always have to type out the whole
- connection string when =Ivy= is enabled for =dired=. Since this
- includes missing auto-completion on remote systems and such, it's
- another valid reason to disable =Ivy= globally.
-
-**** Disable Swiper where it is broken
-
-Ivy/Swiper cannot search in PDFs. It tries to search in the PDF source
-code. Therefore I fall back to using isearch within PDFs.
+** Unbind M-. and M- in =evil-mode=
+=M-.= and =M-,= are popular keybindings for "jump to definition" and
+"back". =evil-mode= by default binds those to rather rarely used
+functions =evil-repeat-pop-next= and =xref-pop-marker-stack=, for some reason.
#+BEGIN_SRC emacs-lisp
- (add-hook 'pdf-view-mode-hook '(lambda()
- (define-key pdf-view-mode-map "\C-s" 'isearch-forward)))
+ (define-key evil-normal-state-map (kbd "M-.") nil)
+ (define-key evil-normal-state-map (kbd "M-,") nil)
#+END_SRC
+** =evil-escape=
+https://github.com/syl20bnr/evil-escape
-*** Improve other packages with ivy
-
- Projectile completion (Default is =ido=)
+Escape from insert state and everything else.
#+BEGIN_SRC emacs-lisp
- (setq projectile-completion-system 'ivy)
+ (setq-default evil-escape-delay 0.2)
+ (setq-default evil-escape-key-sequence "jk")
+ (evil-escape-mode)
#+END_SRC
- Mu4e "folder" and "from" completion (Default is =ido=)
-
+This results in the same feature-set like this vim keybinding:
+#+BEGIN_SRC vim
+"Remap ESC to jk
+:imap jk <esc>
+#+END_SRC
+* Which Key
+ =which-key= displays available keybindings in a popup.
#+BEGIN_SRC emacs-lisp
- (setq mu4e-completing-read-function 'ivy-completing-read)
+ (add-hook 'org-mode-hook 'which-key-mode)
+ (add-hook 'cider-mode-hook 'which-key-mode)
#+END_SRC
- Synosaurus completion (Default is =ido=)
+Use =which-key= to show VIM shortcuts, too.
#+BEGIN_SRC emacs-lisp
- (setq synosaurus-choose-method 'ivy-read)
+(setq which-key-allow-evil-operators t)
+(setq which-key-show-operator-state-maps t)
#+END_SRC
diff --git a/custom-settings.el b/custom-settings.el
index 3bf1b0b..eddf6e7 100644
--- a/custom-settings.el
+++ b/custom-settings.el
@@ -7,16 +7,63 @@
[default default default italic underline success warning error])
'(ansi-color-names-vector
["black" "red3" "ForestGreen" "yellow3" "blue" "magenta3" "DeepSkyBlue" "gray50"])
+ '(company-quickhelp-color-background "#4F4F4F")
+ '(company-quickhelp-color-foreground "#DCDCCC")
'(custom-enabled-themes (quote (whiteboard)))
'(custom-safe-themes
(quote
- ("8f97d5ec8a774485296e366fdde6ff5589cf9e319a584b845b6f7fa788c9fa9a" default)))
+ ("a22f40b63f9bc0a69ebc8ba4fbc6b452a4e3f84b80590ba0a92b4ff599e53ad0" "8f97d5ec8a774485296e366fdde6ff5589cf9e319a584b845b6f7fa788c9fa9a" default)))
+ '(fci-rule-color "#383838")
'(helm-completion-style (quote emacs))
+ '(hl-todo-keyword-faces
+ (quote
+ (("TODO" . "#dc752f")
+ ("NEXT" . "#dc752f")
+ ("THEM" . "#2d9574")
+ ("PROG" . "#4f97d7")
+ ("OKAY" . "#4f97d7")
+ ("DONT" . "#f2241f")
+ ("FAIL" . "#f2241f")
+ ("DONE" . "#86dc2f")
+ ("NOTE" . "#b1951d")
+ ("KLUDGE" . "#b1951d")
+ ("HACK" . "#b1951d")
+ ("TEMP" . "#b1951d")
+ ("FIXME" . "#dc752f")
+ ("XXX+" . "#dc752f")
+ ("\\?\\?\\?+" . "#dc752f"))))
+ '(nrepl-message-colors
+ (quote
+ ("#CC9393" "#DFAF8F" "#F0DFAF" "#7F9F7F" "#BFEBBF" "#93E0E3" "#94BFF3" "#DC8CC3")))
'(org-sort-agenda-notime-is-late nil t)
'(package-selected-packages
(quote
(ac-cider magit blacken py-autopep8 flycheck elpy yasnippet company-lsp company lsp-ui go-autocomplete lsp-mode go-mode markdown-mode gruvbox-theme helm org cider slime evil)))
- '(pdf-view-midnight-colors (quote ("#fdf4c1" . "#282828"))))
+ '(pdf-view-midnight-colors (quote ("#fdf4c1" . "#282828")))
+ '(pos-tip-background-color "#36473A")
+ '(pos-tip-foreground-color "#FFFFC8")
+ '(vc-annotate-background "#2B2B2B")
+ '(vc-annotate-color-map
+ (quote
+ ((20 . "#BC8383")
+ (40 . "#CC9393")
+ (60 . "#DFAF8F")
+ (80 . "#D0BF8F")
+ (100 . "#E0CF9F")
+ (120 . "#F0DFAF")
+ (140 . "#5F7F5F")
+ (160 . "#7F9F7F")
+ (180 . "#8FB28F")
+ (200 . "#9FC59F")
+ (220 . "#AFD8AF")
+ (240 . "#BFEBBF")
+ (260 . "#93E0E3")
+ (280 . "#6CA0A3")
+ (300 . "#7CB8BB")
+ (320 . "#8CD0D3")
+ (340 . "#94BFF3")
+ (360 . "#DC8CC3"))))
+ '(vc-annotate-very-old-color "#DC8CC3"))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
diff --git a/init.el b/init.el
index 00655ca..0281405 100644
--- a/init.el
+++ b/init.el
@@ -15,7 +15,6 @@
(load-config)
-
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
diff --git a/savehist b/savehist
deleted file mode 100644
index 30b4780..0000000
--- a/savehist
+++ /dev/null
@@ -1,20 +0,0 @@
-;; -*- mode: emacs-lisp; coding: utf-8-unix -*-
-;; Minibuffer history file, automatically generated by ‘savehist’.
-
-(setq savehist-minibuffer-history-variables '(ido-buffer-history swiper-history counsel-ibuffer-history counsel-M-x-history ido-file-history buffer-name-history Info-search-history helm-M-x-input-history search-ring regexp-history helm-occur-history org-read-date-history evil-ex-history extended-command-history yes-or-no-p-history file-name-history read-expression-history minibuffer-history))
-(setq ido-buffer-history '("reader.go" "ioutil.go" "reader_test.go"))
-(setq swiper-history '("auto-complete" #("auto-compl" 0 10 (ivy-index 2))))
-(setq counsel-M-x-history '(#("eval-buffer" 0 11 (ivy-index 0)) #("eshell" 0 6 (ivy-index 0)) #("comple" 0 6 (ivy-index 1)) #("gofm" 0 4 (ivy-index 0)) #("lsp" 0 3 (ivy-index 0)) #("elf" 0 3 (ivy-index 0))))
-(setq ido-file-history '("configuration.org" "reader_test.go" nil "reader_test.go" "reader.go" nil "reader.go" "." "configuration.org" "configuration.el" "init.el"))
-(setq buffer-name-history '("reader.go" "ioutil.go" "reader_test.go" "init.el" "npp"))
-(setq Info-search-history '("indent"))
-(setq helm-M-x-input-history '("eval-buffer" "evil-mode" "cal" "revert" "cal" "revert" "magit-st" "package-install" "p" "customize-theme" "kill-some" "auto" "auto-fill" "eval" "comment-box" "eval-b" "package-install" "package-delete" "el" "p" #("def" 0 3 (fontified t face font-lock-keyword-face)) "el" "package-install" #("from" 0 4 (face font-lock-keyword-face fontified t)) "el" #("Elpy" 0 4 (face header-line)) "pyv" #("Elpy" 0 4 (face header-line)) "pyvenv-" #("Elpy" 0 4 (face header-line)) "elp" "pyv" "py" "pyvenv" "el" "py" #("from" 0 4 (face font-lock-keyword-face fontified t)) #("Elpy" 0 4 (face header-line)) "el" "work" #("from" 0 4 (face font-lock-keyword-face fontified t)) "pyv" "pyven" "elp" "eval" #("from" 0 4 (face font-lock-keyword-face fontified t)) "py" "pyv" "elpy" "package-delete" "package-del" "package-install" "elpy-conf" "pyv" "elpy-con" "pyvenv-" "elpy-con" "eval-buffer" "package-install" "pyvenv-work" "list-" "doc-view" "find-file" "find-fi" "org-time-st" "global-auto" "revert" "toggle" "eval" "dired" "toggle-tru" "eval" "expand-reg" "org-export" "eval"))
-(setq search-ring '("smex" "history" "stars" "indent" "hide" "che" "TODO" "indent" "font" "elpy" "nex" "archive" "diary" "helm" "f" "#"))
-(setq regexp-history '("org" "delete"))
-(setq helm-occur-history '("org" "agenda" "delete"))
-(setq org-read-date-history '(" " "15:00 " " " "15:00 " "10:00+1 " " " "14:00-15:00 " " " "2020-02-10 " "2020-02-28 " "2020-02-07 "))
-(setq evil-ex-history '(#("w" 0 1 (ex-index 1)) #("eval-buffer" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11)) #("w" 0 1 (ex-index 1)) #("eval-buffer" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11)) #("w" 0 1 (ex-index 1)) #("eval-buffer" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11)) #("list-packages" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11) 11 12 (ex-index 12) 12 13 (ex-index 13)) #("eval-buffer" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11)) #("w" 0 1 (ex-index 1)) #("eval-buffer" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11)) #("w" 0 1 (ex-index 1)) #("eval-buffer" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11)) #("package-install" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11) 11 12 (ex-index 12) 12 13 (ex-index 13) 13 14 (ex-index 14) 14 15 (ex-index 15)) #("package-install lsp-ui" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11) 11 12 (ex-index 12) 12 13 (ex-index 13) 13 14 (ex-index 14) 14 15 (ex-index 15) 15 16 (ex-index 16) 16 17 (ex-index 17) 17 18 (ex-index 18) 18 19 (ex-index 19) 19 20 (ex-index 20) 20 21 (ex-index 21) 21 22 (ex-index 22)) #("eval-buffer" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11)) #("w" 0 1 (ex-index 1)) #("eval-buffer" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11)) #("w" 0 1 (ex-index 1)) #("list-packages" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11) 11 12 (ex-index 12) 12 13 (ex-index 13)) #("package-install" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11) 11 12 (ex-index 12) 12 13 (ex-index 13) 13 14 (ex-index 14) 14 15 (ex-index 15)) #("package-install go-mode" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11) 11 12 (ex-index 12) 12 13 (ex-index 13) 13 14 (ex-index 14) 14 15 (ex-index 15) 15 16 (ex-index 16) 16 17 (ex-index 17) 17 18 (ex-index 18) 18 19 (ex-index 19) 19 20 (ex-index 20) 20 21 (ex-index 21) 21 22 (ex-index 22) 22 23 (ex-index 23)) #("w" 0 1 (ex-index 1)) #("customize-themes" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11) 11 12 (ex-index 12) 12 13 (ex-index 13) 13 14 (ex-index 14) 14 15 (ex-index 15) 15 16 (ex-index 16)) #("package-install gruvbox" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11) 11 12 (ex-index 12) 12 13 (ex-index 13) 13 14 (ex-index 14) 14 15 (ex-index 15) 15 16 (ex-index 16) 16 17 (ex-index 17) 17 18 (ex-index 18) 18 19 (ex-index 19) 19 20 (ex-index 20) 20 21 (ex-index 21) 21 22 (ex-index 22) 22 23 (ex-index 23)) #("w" 0 1 (ex-index 1)) #("org-insert-link" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11) 11 12 (ex-index 12) 12 13 (ex-index 13) 13 14 (ex-index 14) 14 15 (ex-index 15)) #("w" 0 1 (ex-index 1)) #("customize-themes" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11) 11 12 (ex-index 12) 12 13 (ex-index 13) 13 14 (ex-index 14) 14 15 (ex-index 15) 15 16 (ex-index 16)) #("helm-occur" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10)) #("occur" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5)) #("w" 0 1 (ex-index 1)) #("e ~/Nextcloud/org/archive/emacs-tips.org" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11) 11 12 (ex-index 12) 12 13 (ex-index 13) 13 14 (ex-index 14) 14 15 (ex-index 15) 15 16 (ex-index 16) 16 17 (ex-index 17) 17 18 (ex-index 18) 18 19 (ex-index 19) 19 20 (ex-index 20) 20 21 (ex-index 21) 21 22 (ex-index 22) 22 23 (ex-index 23) 23 24 (ex-index 24) 24 25 (ex-index 25) 25 26 (ex-index 26) 26 27 (ex-index 27) 27 28 (ex-index 28) 28 29 (ex-index 29) 29 30 (ex-index 30) 30 31 (ex-index 31) 31 32 (ex-index 32) 32 33 (ex-index 33) 33 34 (ex-index 34) 34 35 (ex-index 35) 35 36 (ex-index 36) 36 37 (ex-index 37) 37 38 (ex-index 38) 38 39 (ex-index 39) 39 40 (ex-index 40)) #("eval-buffer" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11)) #("w" 0 1 (ex-index 1)) #("sp" 0 1 (ex-index 1) 1 2 (ex-index 2)) #("diary-mode" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10)) #("helm-mini" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9)) #("helm-find-files-history" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11) 11 12 (ex-index 12) 12 13 (ex-index 13) 13 14 (ex-index 14) 14 15 (ex-index 15) 15 16 (ex-index 16) 16 17 (ex-index 17) 17 18 (ex-index 18) 18 19 (ex-index 19) 19 20 (ex-index 20) 20 21 (ex-index 21) 21 22 (ex-index 22) 22 23 (ex-index 23)) #("w" 0 1 (ex-index 1)) #("eval-buffer" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11)) #("w" 0 1 (ex-index 1)) #("eval-buffer" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11)) #("w" 0 1 (ex-index 1)) #("eval-buffer" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11)) #("w" 0 1 (ex-index 1)) #("sp" 0 1 (ex-index 1) 1 2 (ex-index 2)) #("w" 0 1 (ex-index 1)) #("eval-buffer" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11)) #("w" 0 1 (ex-index 1)) #("eval-buffer" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11)) #("w" 0 1 (ex-index 1)) #("eval-buffer" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11)) #("w" 0 1 (ex-index 1)) #("vs" 0 1 (ex-index 1) 1 2 (ex-index 2)) #("w" 0 1 (ex-index 1)) #("W" 0 1 (ex-index 1)) #("w" 0 1 (ex-index 1)) #("diary-mode" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10)) #("customize" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9)) #("q" 0 1 (ex-index 1)) #("w" 0 1 (ex-index 1)) #("calendar-set-date-style" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11) 11 12 (ex-index 12) 12 13 (ex-index 13) 13 14 (ex-index 14) 14 15 (ex-index 15) 15 16 (ex-index 16) 16 17 (ex-index 17) 17 18 (ex-index 18) 18 19 (ex-index 19) 19 20 (ex-index 20) 20 21 (ex-index 21) 21 22 (ex-index 22) 22 23 (ex-index 23)) #("w" 0 1 (ex-index 1)) #("diary-mode" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10)) #("eval-buffer" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11)) #("w" 0 1 (ex-index 1)) #("q" 0 1 (ex-index 1)) #("w" 0 1 (ex-index 1)) #("q" 0 1 (ex-index 1)) #("helm-find-files-history" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11) 11 12 (ex-index 12) 12 13 (ex-index 13) 13 14 (ex-index 14) 14 15 (ex-index 15) 15 16 (ex-index 16) 16 17 (ex-index 17) 17 18 (ex-index 18) 18 19 (ex-index 19) 19 20 (ex-index 20) 20 21 (ex-index 21) 21 22 (ex-index 22) 22 23 (ex-index 23))))
-(setq extended-command-history '("eval-buffer" "evil-mode" "calendar" "revert-buffer" "magit-status" "package-install" "pyvenv-workon" "customize-themes" "auto-fill-mode" "eval-buffer" "comment-box" "elpy-config" "pyvenv-deactivate" "pyvenv-activate" "package-delete" "list-packages" "doc-view-mode" "org-time-stamp" "global-auto-revert-mode" "toggle-truncate-lines" "dired-undo" "expand-region-abbrevs" "org-export-dispatch" "markdown-mode" "org-toggle-sticky-agenda" "recover-file"))
-(setq yes-or-no-p-history '("yes" "no" "yes" "no" "yes" "no" "yes" "no" "yes" "no" "yes" "no" "yes"))
-(setq file-name-history '("/home/lemon/.emacs.d/configuration.org" "/home/lemon/go/src/github.com/hammerheadlemon/datamaps-go/reader/reader_test.go" "~/.emacs.d/configuration.org" "/home/lemon/go/src/github.com/hammerheadlemon/datamaps-go/reader/reader_test.go" "/home/lemon/go/src/github.com/hammerheadlemon/datamaps-go/reader/reader.go" "~/.emacs.d/configuration.org" "/home/lemon/go/src/github.com/hammerheadlemon/datamaps-go/reader/reader.go" "/home/lemon/.emacs.d/configuration.org" "/home/lemon/.emacs.d/configuration.el" "/home/lemon/.emacs.d/init.el" "~/Desktop/copy_config.org" "~/.emacs.d/configuration.org" "~/.emacs.d/init.el" "~/.emacs.d/configuration.org" #("~/.emacs.d/init.el" 1 2 (match-part "/home/lemon/.emacs.d/init.el") 2 18 (match-part "/home/lemon/.emacs.d/init.el")) "~/Desktop/copy_config.org" "~/.emacs.d/configuration.org" #("~/Nextcloud/org/journal.org" 1 2 (match-part "/home/lemon/Nextcloud/org/journal.org") 2 27 (match-part "/home/lemon/Nextcloud/org/journal.org")) #("~/Nextcloud/org/todo.org" 1 2 (match-part "/home/lemon/Nextcloud/org/todo.org") 2 24 (match-part "/home/lemon/Nextcloud/org/todo.org")) "~/code/python/bcompiler-engine/engine/tests" "~/.gitignore_global" "~/code/python/bcompiler-engine" "~/.newsboat/urls" #("~/Nextcloud/org/projects.org" 1 2 (match-part "/home/lemon/Nextcloud/org/projects.org") 2 28 (match-part "/home/lemon/Nextcloud/org/projects.org")) "~/code/python/bcompiler-engine/" "~/code/python/bcompiler-engine/" "~/code/python/bcompiler-engine/engine/use_cases/output.py" "~/code/python/bcompiler-engine/engine/use_cases/output.py" "~/code/python/bcompiler-engine/engine/config.py" "~/code/python/bcompiler-engine/engine/config.py" "~/code/python/bcompiler-engine/engine/config.py" "~/Nextcloud/org/archive.org" #("~/go/src/github.com/hammerheadlemon/datamaps-go/reader/reader.go" 1 2 (match-part "/home/lemon/go/src/github.com/hammerheadlemon/datamaps-go/reader/reader.go") 2 64 (match-part "/home/lemon/go/src/github.com/hammerheadlemon/datamaps-go/reader/reader.go")) "~/Nextcloud/Journal/presents.md" "~/Nextcloud/org/archive/journal.org" "~/.emacs.d/orgsettings.el" "~/.emacs.d/init.el-old" "~/Nextcloud/org/emacs-diary" "~/Nextcloud/org/refile.org" "~/.emacs.d/#init.el#"))
-(setq minibuffer-history '("di" #("**" 0 1 (fontified t org-category "todo" face org-level-2) 1 2 (fontified t org-category "todo" face org-level-2)) #("*" 0 1 (fontified t face org-level-1 org-category "todo")) "agen" "age" "agen" "agenda" "agen" #("**" 0 1 (fontified t org-category "todo" face org-level-2) 1 2 (fontified t org-category "todo" face org-level-2)) ":WAITING:" #("**" 0 1 (fontified t face org-level-2 org-category "todo") 1 2 (fontified t face org-level-2 org-category "todo")) "TRAVEL" #("Book" 0 4 (fontified t face org-level-2 org-category "todo")) "tag" "agen" #("Jan" 0 3 (fontified t org-category "todo" org-todo-head #("TODO" 0 4 (face (:foreground "red" :weight bold))) face org-level-2)) #("TiME" 0 4 (fontified t)) "dft" "Type" #("**" 0 1 (fontified t org-category "todo" face org-level-2) 1 2 (fontified t org-category "todo" face org-level-2)) "priority" "todo" "ini" "copy_config.org" "todo" "Play Emacs like an instrument" "https://www.youtube.com/watch?v=gfZDwYeBlO4&list=LLYE9stlysY8RXHhVtzRZJoA&index=2&t=0s" "joun" "todo" "leading" "org-hide-lead" "ini" "org-hide" "todo" "org-hide" "sr" "todo" "Df" "ini" "org-hide-leading" "org-hide-lead" "todo" "org-hide-leading-stars" "org-hide" #("**" 0 1 (face org-hide fontified t) 1 2 (face org-level-2 fontified t)) "todo" "ini" "leading" "todo" "org-indent-mode" "org-indent" "pro" "sc" "ini" #("**" 0 1 (fontified t org-category "emacs-tips" face org-level-2) 1 2 (fontified t org-category "emacs-tips" face org-level-2)) "tips" "reload" "todo" "Documentation" "hel" #("test_master_from_org_templates" 0 30 (dired-filename t mouse-face highlight help-echo "mouse-2: visit this file in other window" fontified t)) #("**" 0 1 (fontified t org-category "todo" face org-hide) 1 2 (fontified t org-category "todo" face org-level-2)) "todo" #("import" 0 6 (fontified t face font-lock-keyword-face)) " *undo-tree*" "magit: bcompiler-engine" "*" "magit" #("space" 0 5 (fontified t)) "agen" #("file+datetree" 0 13 (fontified t)) "xml" "comp" "Organice" "https://github.com/200ok-ch/organice" "in" "info" "emacs" "indent-to" "indent" #("Dec" 0 3 (fontified t face diary)) "proj" "magit" "ini" #("Elpy" 0 4 (face header-line)) #("import" 0 6 (face font-lock-keyword-face fontified t)) "ini" #("def" 0 3 (fontified t face font-lock-keyword-face)) "scr" "elpy-test-runner" "elpy-test" "elpy-test-disc" "elpy-test" "Revert" "/home/lemon/code/python/bcompiler-engine/" #("Elpy" 0 4 (face header-line)) "py-auto" "ini" #("questions" 0 9 (fontified t line-prefix #(" " 0 6 (face org-indent)) wrap-prefix #(" " 0 6 (face org-indent) 6 8 (face org-indent)))) "proj"))