summary refs log tree commit diff
path: root/emacs/custom/my-navigation.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-04-29 08:59:15 -0700
committerFranck Cuny <franck@fcuny.net>2022-04-29 08:59:15 -0700
commit80d30f549f0701a89de546a62910d1958195c102 (patch)
treeecf3772952ad97d3dc1a008b0ee56944080f4a41 /emacs/custom/my-navigation.el
parentmy-text: enable goto-address-mode (diff)
downloademacs.d-80d30f549f0701a89de546a62910d1958195c102.tar.gz
don't specify where to write Emacs files
We don't care, as long as these files are ignored in `.gitignore' it
does not matter where we write them.
Diffstat (limited to 'emacs/custom/my-navigation.el')
-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)