Compare commits

..

No commits in common. "e01e02970f56fa7d562c547779fab768cb05c8f2" and "f2a62083d7563f0d737bc19a38a858dea6a27afd" have entirely different histories.

10
init.el
View File

@ -232,7 +232,7 @@
(bind-key "M-/" #'hippie-expand) (bind-key "M-/" #'hippie-expand)
(bind-key "M-:" #'pp-eval-expression) (bind-key "M-:" #'pp-eval-expression)
(bind-key "M-=" #'count-words) (bind-key "M-=" #'count-words)
(bind-key "M-SPC" #'cycle-spacing) ; default since Emacs 29.1 (bind-key "M-SPC" #'cycle-spacing)
(bind-key "M-Z" #'zap-to-char) (bind-key "M-Z" #'zap-to-char)
(bind-key "M-i" #'swiper-from-isearch isearch-mode-map) (bind-key "M-i" #'swiper-from-isearch isearch-mode-map)
(bind-key "M-j" #'(lambda () (interactive) (join-line -1))) (bind-key "M-j" #'(lambda () (interactive) (join-line -1)))
@ -496,9 +496,6 @@
;; and replace it with something more straightforward. ;; and replace it with something more straightforward.
(advice-add 'grep-read-files :around #'db/grep-read-files))) (advice-add 'grep-read-files :around #'db/grep-read-files)))
(use-package multisession
:config (setq multisession-directory (expand-file-name "multisession/" emacs-d)))
(use-package proced (use-package proced
:custom ((proced-tree-flag t) :custom ((proced-tree-flag t)
(proced-auto-update-flag t) (proced-auto-update-flag t)
@ -2140,7 +2137,10 @@ point to the beginning of buffer first."
("\\.\\(?:mp4\\|mkv\\|avi\\|flv\\|ogv\\|webm\\)\\(?:\\.part\\)?\\'" ("\\.\\(?:mp4\\|mkv\\|avi\\|flv\\|ogv\\|webm\\)\\(?:\\.part\\)?\\'"
"vlc") "vlc")
("\\.\\(?:mp3\\|flac\\|ogg\\)\\'" "mplayer") ("\\.\\(?:mp3\\|flac\\|ogg\\)\\'" "mplayer")
("\\.docx?\\'" "loffice")))) ("\\.docx?\\'" "loffice")))
(when on-windows
(setq directory-free-space-program nil)))
:config (progn :config (progn
(put 'dired-find-alternate-file 'disabled nil) (put 'dired-find-alternate-file 'disabled nil)