summary refs log tree commit diff
path: root/emacs/custom
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--emacs/custom/my-navigation.el (renamed from emacs/custom/fcuny-navigation.el)9
1 files changed, 3 insertions, 6 deletions
diff --git a/emacs/custom/fcuny-navigation.el b/emacs/custom/my-navigation.el
index b4ed9a3..4a36310 100644
--- a/emacs/custom/fcuny-navigation.el
+++ b/emacs/custom/my-navigation.el
@@ -1,8 +1,7 @@
-;;; fcuny-navigation.el --- Configure parts related to navigation
+;;; my-navigation.el --- Configure parts related to navigation
 ;;; Commentary:
 ;;; Code:
 
-(require 'fcuny-vars)
 (require 'use-package)
 
 (setq help-window-select t)
@@ -11,7 +10,6 @@
   :ensure t
   :bind-keymap ("C-c p" . project-prefix-map)
   :custom
-  (project-list-file (expand-file-name "projects" fcuny/path-emacs-var))
   (project-switch-commands
    '((?f "File" project-find-file)
      (?d "Dired" project-dired)
@@ -22,7 +20,6 @@
 
 (use-package bookmark
   :custom
-  (bookmark-default-file (expand-file-name "bookmarks" fcuny/path-emacs-var))
   (bookmark-save-flag 1))
 
 (use-package ls-lisp
@@ -153,5 +150,5 @@
   :config
   (which-key-mode))
 
-(provide 'fcuny-navigation)
-;;; fcuny-navigation.el ends here
+(provide 'my-navigation)
+;;; my-navigation.el ends here