~removed goto functions and using lambdas now

Goto functions just open dired instances for a specific folder, which a
lambda can do better. Instead of having to load the new file just to use
the function, just make the bindings directly via dired.
This commit is contained in:
AChavali
2020-02-09 18:28:28 +00:00
parent eb203c229c
commit 08cc5bd148
2 changed files with 6 additions and 21 deletions

View File

@@ -141,6 +141,7 @@ If RETURN-P, return the message as a string instead of displaying it."
:icon (all-the-icons-octicon "bookmark" :face 'font-lock-keyword-face)
:action bookmark-jump)))
#+END_SRC
- Space image comes from [[https://flaticon.com][website]]
- Remove the Github link to the official Doom Emacs repository: it's in muscle memory
at this point.
@@ -340,7 +341,7 @@ each of the unit tests ran."
:server-id 'typescript))))
#+END_SRC
* Keymap
- General keymap for leader
General keymap for leader
** Personal
- Prefix "SPC m" (rebound from local-leader) that will hold personal keybinds
for functions that I like using
@@ -350,16 +351,16 @@ each of the unit tests ran."
(map!
:leader
:prefix ("m" . "personal") ; Personal
:desc "Open books" "b" #'oreodave/goto-books ; I like my books
:desc "Open school dir" "s" #'oreodave/goto-school ; I like my schooling
:desc "Open weather" "w" #'oreodave/weather ; Nah I don't like the weather
:desc "Open books" "b" #'(lambda () (interactive) (dired (concat org-directory "/Books"))); I like my books
:desc "Open school dir" "s" #'(lambda () (interactive) (dired (expand-file-name "~/School")))
:desc "Open notes" "n" #'(lambda () (interactive) (dired org-directory))
:desc "Open code" "c" #'(lambda () (interactive) (dired (expand-file-name "~/Code")))
:desc "Open weather" "w" #'oreodave/weather
:desc "Change theme" "t" #'oreodave/theme/set-new-theme ; From my own collection
(:after pdf-view
:desc "Goto page on pdf" "p" #'pdf-view-goto-page)
:desc "Reload emacs" "r" #'oreodave/reload) ; Reload is necessary
#+END_SRC
** Counsel
- Counsel keybind config
- Mostly just convenience stuff that happens to use counsel