summary refs log tree commit diff
path: root/config/init-file.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-05-26 14:00:34 -0700
committerFranck Cuny <franck@fcuny.net>2024-05-26 14:00:34 -0700
commit38593df6bb457fc3940fcef1d93976cd56b0a2d0 (patch)
tree58fbc11815b2fe7619d1234388877ebc0763afa6 /config/init-file.el
parenti want the eglot buffer to debug stuff (diff)
downloademacs.d-38593df6bb457fc3940fcef1d93976cd56b0a2d0.tar.gz
massive cleanup
Diffstat (limited to '')
-rw-r--r--config/init-file.el44
1 files changed, 0 insertions, 44 deletions
diff --git a/config/init-file.el b/config/init-file.el
deleted file mode 100644
index d0e6da3..0000000
--- a/config/init-file.el
+++ /dev/null
@@ -1,44 +0,0 @@
-;;; init-file.el --- Configure things related to files -*- lexical-binding: t -*-
-;; Author: Franck Cuny <franck@fcuny.net>
-
-;;; Commentary:
-
-;; Configure things related to files
-
-;;; Code:
-
-(require 'bookmark)
-
-(require 'init-util)
-
-(use-package files
-  :custom
-  (require-final-newline t)
-  (auto-save-default nil)
-  (auto-save-list-file-prefix nil)
-  (backup-inhibited t))
-
-(setq bookmark-default-file (user-data "bookmarks"))
-
-(use-package recentf
-  :custom
-  (recentf-max-saved-items 2000)
-  (recentf-max-menu-items  200)
-  (recentf-exclude
-   '("~\\'" "\\`out\\'" "\\.log\\'" "^/[^/]*:" "\\.el\\.gz\\'" "\\.gz\\'"))
-  (recentf-save-file       (user-data "recentf"))
-  (recentf-auto-cleanup 60)
-  :config
-  (recentf-mode t)
-  (run-at-time nil 60 'recentf-save-list)
-  :diminish nil)
-
-(use-package autorevert
-  :custom
-  (auto-revert-use-notify nil)
-  :config
-  (global-auto-revert-mode t))
-
-(provide 'init-file)
-
-;;; init-file.el ends here