summary refs log tree commit diff
path: root/emacs/custom/my-navigation.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-03-23 07:46:34 -0700
committerFranck Cuny <franck@fcuny.net>2022-03-23 07:46:34 -0700
commit7d4ada316e01c0665342420e7fb204971ccdac01 (patch)
tree4404fd142003019dd3191e13203f05ea95c2b14d /emacs/custom/my-navigation.el
parentrename fcuny-ui to my-ui (diff)
downloademacs.d-7d4ada316e01c0665342420e7fb204971ccdac01.tar.gz
rename fcuny-navigation to my-navigation
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