aboutsummaryrefslogtreecommitdiff
path: root/doom.d/modules/personal.org
diff options
context:
space:
mode:
authorAChavali <aryadevchavali1@gmail.com>2020-02-09 18:28:28 +0000
committerAChavali <aryadevchavali1@gmail.com>2020-02-09 18:52:00 +0000
commit08cc5bd1485ab79ffdd8c4d9d21768ee0c96944c (patch)
treec12de4008a9d6a52d4785b4dbc5c119085acd4fa /doom.d/modules/personal.org
parenteb203c229c8f1b9ff77d87c4e748e14616bd8a48 (diff)
downloaddotfiles-08cc5bd1485ab79ffdd8c4d9d21768ee0c96944c.tar.gz
dotfiles-08cc5bd1485ab79ffdd8c4d9d21768ee0c96944c.tar.bz2
dotfiles-08cc5bd1485ab79ffdd8c4d9d21768ee0c96944c.zip
~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.
Diffstat (limited to 'doom.d/modules/personal.org')
-rw-r--r--doom.d/modules/personal.org16
1 files changed, 0 insertions, 16 deletions
diff --git a/doom.d/modules/personal.org b/doom.d/modules/personal.org
index 1f41154..61f2cfc 100644
--- a/doom.d/modules/personal.org
+++ b/doom.d/modules/personal.org
@@ -11,14 +11,6 @@ Personal functionality that aid my workflow or are just cool.
#+END_SRC
Reload the doom session by brute force fully loading the "config.el" file in the
doom private directory.
-* Go to Books
-#+BEGIN_SRC elisp
-(defun oreodave/goto-books ()
- "Goto the books section"
- (interactive)
- (dired (concat org-directory "/Books")))
-#+END_SRC
-Open a Dired session to the books directory in the org-directory.
* Change theme
#+BEGIN_SRC elisp
(setq oreodave/themes/theme-list '(doom-solarized-dark doom-gruvbox doom-city-lights
@@ -58,14 +50,6 @@ Allow user to set a theme from a limited set of candidates, based on
- Light themes other than Emacs default, maybe sometimes solarized-light
- Horrid low contrast ones with no colour. Grayscale particularly. I can't
handle those.
-* Go to School directory
-#+BEGIN_SRC elisp
-(defun oreodave/goto-school ()
- "Goto the school directory"
- (interactive)
- (dired (expand-file-name "~/School")))
-#+END_SRC
-Going to the school directory, quick access to school work.
* Password store
Function to get a password given a key.
#+BEGIN_SRC elisp