Delete org-helpers

I'm trying to tidy things up, so I'm trying to apply some of the principles from
"Essentialism" to my Emacs configuration.
This commit is contained in:
William Carroll 2020-08-25 14:15:58 +01:00
parent 23a41528bb
commit 504cf0daab
4 changed files with 0 additions and 35 deletions

View file

@ -21,7 +21,6 @@
(require 'list)
(require 'string)
(require 'set)
(require 'org-helpers)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Constants
@ -60,9 +59,6 @@ Otherwise, open with `counsel-find-file'."
(make-bookmark :label "depot"
:path "~/depot"
:kbd "t")
(make-bookmark :label "org"
:path org-helpers/directory
:kbd "o")
(make-bookmark :label "briefcase"
:path (getenv "BRIEFCASE")
:kbd "d")

View file

@ -1,29 +0,0 @@
;;; org-helpers.el --- Utility functions for working with my Org setup -*- lexical-binding: t -*-
;; Author: William Carroll <wpcarro@gmail.com>
;;; Commentary:
;; Some small utility functions intended to make me more likely to use Org mode
;; more often.
;;; Code:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Dependencies
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(require 'f)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Library
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defconst org-helpers/directory "~/briefcase/org"
"The directory where I store most of my Org files.")
(defun org-helpers/find-file (name)
"Call `find-file' on NAME in my org directory"
(find-file
(f-join org-helpers/directory name)))
(provide 'org-helpers)
;;; org-helpers.el ends here

View file

@ -24,7 +24,6 @@
(require 'kbd)
(require 'ivy-helpers)
(require 'display)
(require 'org-helpers)
(require 'vterm-mgt)
(require 'dash)
(require 'evil)

View file

@ -11,7 +11,6 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(require 'f)
(require 'org-helpers)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Configuration