summary refs log tree commit diff
path: root/emacs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--emacs/custom/my-navigation.el (renamed from emacs/custom/fcuny-navigation.el)9
-rw-r--r--emacs/init.el2
2 files changed, 4 insertions, 7 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
diff --git a/emacs/init.el b/emacs/init.el
index 534f116..7334f48 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -40,7 +40,7 @@
 
 (require 'my-settings (expand-file-name "custom/my-settings" user-emacs-directory))
 (require 'my-ui (expand-file-name "custom/my-ui" user-emacs-directory))
-(require 'fcuny-navigation (expand-file-name "custom/fcuny-navigation" user-emacs-directory))
+(require 'my-navigation (expand-file-name "custom/my-navigation" user-emacs-directory))
 (require 'fcuny-edit (expand-file-name "custom/fcuny-edit" user-emacs-directory))
 (require 'fcuny-text (expand-file-name "custom/fcuny-text" user-emacs-directory))
 (require 'fcuny-git (expand-file-name "custom/fcuny-git" user-emacs-directory))