Disable fido-mode, enable ido-mode and auto-insert-mode

This commit is contained in:
Marcus Kammer 2024-07-07 15:02:34 +02:00
parent 634d6944d1
commit 4e22d34813
Signed by: marcuskammer
GPG key ID: C374817BE285268F

View file

@ -73,10 +73,10 @@
;; (setq ido-everywhere t)
;; (setq ido-create-new-buffer 'always)
;(setq ido-file-extensions-order '(".org" ".lisp" ".py" ".txt" ".el" ".epub"))
; (ido-mode t)
(ido-mode t)
;(fido-mode 1) ; replace icomplete mode
(fido-vertical-mode 1)
;(fido-vertical-mode 1)
;;;
;;; bundle--encoding
@ -145,3 +145,11 @@
("Europe/Sofia" "Sofia")
("Asia/Calcutta" "Bangalore")
("Asia/Tokyo" "Tokyo")))
(auto-insert-mode 1)
(setq auto-insert-alist
(append '((("\\.lisp\\'" . "Lisp header")
nil
";;;; -*- mode: common-lisp; coding: utf-8; -*-\n"))
auto-insert-alist))