diff options
author | William Carroll <wpcarro@gmail.com> | 2018-06-15T18·23-0400 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2018-07-19T16·00-0400 |
commit | 30cdf1e94183dd2ca761e2283dea7c756eb814c5 (patch) | |
tree | c2918168f2d2fd18523218367c8cff77282a4696 /emacs.d/wpc/variables.el | |
parent | 519be4dca1a5b7505aa3ad18f604b9db1f7a175b (diff) |
Support current-project variable
DRYs up configuration... This value is used to set: - my initial buffer - where <leader>-p jumps to
Diffstat (limited to 'emacs.d/wpc/variables.el')
-rw-r--r-- | emacs.d/wpc/variables.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs.d/wpc/variables.el b/emacs.d/wpc/variables.el index af6bfde45a41..bd5af2a01051 100644 --- a/emacs.d/wpc/variables.el +++ b/emacs.d/wpc/variables.el @@ -6,6 +6,10 @@ ;;; Code: +(defconst wpc/current-project + "~/urbint/grid/" + "Variable holding the directory for my currently active project.") + (defvar wpc/mouse-kbds '([mouse-1] [down-mouse-1] [drag-mouse-1] [double-mouse-1] [triple-mouse-1] [mouse-2] [down-mouse-2] [drag-mouse-2] [double-mouse-2] [triple-mouse-2] |