diff --git a/ha-capturing-notes.org b/ha-capturing-notes.org index b6d8535..7b9c5c5 100644 --- a/ha-capturing-notes.org +++ b/ha-capturing-notes.org @@ -211,9 +211,6 @@ the native-comp model, but I reserve the right to change this." (server-start) #+END_SRC * External Capturing -:LOGBOOK: -CLOCK: [2021-05-25 Tue 13:35]--[2021-05-25 Tue 14:05] => 0:30 -:END: If we put something on the clipboard using =xclip= or something, and then perhaps =emacsclient= could call this function to put those contents into clocked in task. diff --git a/ha-config.org b/ha-config.org index 8d74aaf..d2b24dd 100644 --- a/ha-config.org +++ b/ha-config.org @@ -365,10 +365,11 @@ Using the key-chord project allows me to make Escape be on two key combo presses Dropping into Emacs state is better than pure Evil state for applications, however, [[https://github.com/emacs-evil/evil-collection][the evil-collection package]] creates a hybrid between the two, that I like. #+BEGIN_SRC emacs-lisp -(use-package evil-collection - :after evil - :config - (evil-collection-init)) +(ignore-errors + (use-package evil-collection + :after evil + :config + (evil-collection-init))) #+END_SRC Do I want to specify the list of modes to change for =evil-collection-init=, e.g. @@ -984,12 +985,6 @@ Build the hydra as well as configure the =perspective= project. (ha-leader "TAB" '("workspaces" . hydra-workspace-leader/body))) #+END_SRC *** Predefined Workspaces -First step is to get rid of the /recent/ feature, as I don't really use that. -#+BEGIN_SRC emacs-lisp :tangle no -(recentf-mode -1) -(remove-hook 'kill-emacs-hook 'recentf-cleanup) -(remove-hook 'kill-emacs-hook 'save-place-kill-emacs-hook) -(remove-hook 'kill-emacs-hook 'savehist-autosave) #+END_SRC Let's describe a list of startup project workspaces. This way, I don't need the clutter of the recent state, but also get back to a state of mental normality. diff --git a/ha-programming.org b/ha-programming.org index 4bea703..9389708 100644 --- a/ha-programming.org +++ b/ha-programming.org @@ -86,6 +86,7 @@ The Emacs [[https://github.com/astoff/devdocs.el][devdocs]] project is active, a #+BEGIN_SRC emacs-lisp (use-package devdocs + :after evil :config (define-key evil-normal-state-map (kbd "g D") 'devdocs-lookup)