summary refs log tree commit diff
path: root/emacs/custom/my-navigation.el
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--emacs/custom/my-navigation.el3
1 files changed, 0 insertions, 3 deletions
diff --git a/emacs/custom/my-navigation.el b/emacs/custom/my-navigation.el
index d7c8eba..b7c8627 100644
--- a/emacs/custom/my-navigation.el
+++ b/emacs/custom/my-navigation.el
@@ -6,7 +6,6 @@
 
 (setq help-window-select t)
 
-(customize-set-variable 'project-list-file (expand-file-name "var/projects" user-emacs-directory))
 (customize-set-variable 'project-switch-commands
                         '((?f "File" project-find-file)
                           (?d "Dired" project-dired)
@@ -16,14 +15,12 @@
                           (?r "Search" rg-project)))
 
 (customize-set-variable 'bookmark-save-flag 1)
-(customize-set-variable 'bookmark-file (expand-file-name "var/bookmarks" user-emacs-directory))
 
 (global-set-key (kbd "C-x C-b") 'ibuffer)
 (global-set-key (kbd "M-g i") 'imenu)
 
 (customize-set-variable 'recentf-max-saved-items 500)
 (customize-set-variable 'recentf-exclude '(".gz" ".xz" ".zip"))
-(customize-set-variable 'recentf-save-file (expand-file-name "var/recentf" user-emacs-directory))
 (add-hook 'after-init-hook 'recentf-mode)
 
 (customize-set-variable 'rg-group-result t)