Fixed a bug with reloading my config file.
And a bit of clean up.
This commit is contained in:
parent
27d54bbe65
commit
0d4b1e97c0
3 changed files with 6 additions and 13 deletions
|
@ -211,9 +211,6 @@ the native-comp model, but I reserve the right to change this."
|
||||||
(server-start)
|
(server-start)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
* External Capturing
|
* 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
|
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.
|
perhaps =emacsclient= could call this function to put those contents into clocked in task.
|
||||||
|
|
||||||
|
|
|
@ -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.
|
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
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package evil-collection
|
(ignore-errors
|
||||||
:after evil
|
(use-package evil-collection
|
||||||
:config
|
:after evil
|
||||||
(evil-collection-init))
|
:config
|
||||||
|
(evil-collection-init)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
Do I want to specify the list of modes to change for =evil-collection-init=, e.g.
|
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)))
|
(ha-leader "TAB" '("workspaces" . hydra-workspace-leader/body)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** Predefined Workspaces
|
*** 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
|
#+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.
|
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.
|
||||||
|
|
|
@ -86,6 +86,7 @@ The Emacs [[https://github.com/astoff/devdocs.el][devdocs]] project is active, a
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package devdocs
|
(use-package devdocs
|
||||||
|
:after evil
|
||||||
:config
|
:config
|
||||||
(define-key evil-normal-state-map (kbd "g D") 'devdocs-lookup)
|
(define-key evil-normal-state-map (kbd "g D") 'devdocs-lookup)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue