Fixed a bug with reloading my config file.

And a bit of clean up.
This commit is contained in:
Howard Abrams 2022-02-25 14:55:17 -08:00
parent 27d54bbe65
commit 0d4b1e97c0
3 changed files with 6 additions and 13 deletions

View file

@ -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.

View file

@ -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
(ignore-errors
(use-package evil-collection
:after evil
:config
(evil-collection-init))
(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.

View file

@ -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)