diff options
| author | tslil clingman <> | 2022-08-09 08:16:16 +0200 |
|---|---|---|
| committer | tslil clingman <tslil@posteo.de> | 2023-01-18 08:34:01 +0100 |
| commit | 5301833eaced40b8f7a64a04f222aa1d5986c481 (patch) | |
| tree | 0ae1683b0f36868388c1dee1224484b8ae9791ab /emacs/work_inits/60-misc-configs.el | |
| parent | 0d57c812922b1578be2019d62500492ea7e6c616 (diff) | |
work inits
Diffstat (limited to 'emacs/work_inits/60-misc-configs.el')
| -rw-r--r-- | emacs/work_inits/60-misc-configs.el | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/emacs/work_inits/60-misc-configs.el b/emacs/work_inits/60-misc-configs.el new file mode 100644 index 0000000..4df81e0 --- /dev/null +++ b/emacs/work_inits/60-misc-configs.el @@ -0,0 +1,22 @@ +;; Time-stamp: <2021-09-27 08h49 EDT (hobbies)> + +(use-package dired + :defer t + :config + (setq dired-listing-switches "--group-directories-first -alh" + dired-auto-revert-buffer t + dired-dwim-target t + ;; ??? + ;; dired-guess-shell-alist-user '(("\\.djvu\\'" "zathura") + ;; ("\\.pdf\\'" "zathura") + ;; ("\\.ps\\'" "zathura")) + )) + +(use-package browse-url + :defer t + :config + (setq browse-url-generic-program "firefox" + browse-url-browser-function 'browse-url-default-browser)) + +(setq backup-directory-alist `((".*" . ,temporary-file-directory)) + auto-save-file-name-transforms `((".*" ,temporary-file-directory t))) |
