From a4e68b7bf9f4875d2c0da6f54c3cb8c7bc853346 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Tue, 7 May 2024 23:54:44 +0530 Subject: (Doom)-Deleted Doom I've superseded all the functionality I wanted in doom for quite some time now. I don't see any reason for using it, and it usually makes it a bit annoying to find stuff in the project due to file name conflicts. As a final note, thank you very much Doom Emacs (hlissner in particular) for introducing me to this amazing software. The community was really welcoming and I was very much eased into the learning curve of Emacs, after coming from Vim. --- .../doom/modules/private/completion/config.el | 49 ---------------------- .../doom/modules/private/completion/packages.el | 8 ---- 2 files changed, 57 deletions(-) delete mode 100644 Doom/.config/doom/modules/private/completion/config.el delete mode 100644 Doom/.config/doom/modules/private/completion/packages.el (limited to 'Doom/.config/doom/modules/private/completion') diff --git a/Doom/.config/doom/modules/private/completion/config.el b/Doom/.config/doom/modules/private/completion/config.el deleted file mode 100644 index 633ac96..0000000 --- a/Doom/.config/doom/modules/private/completion/config.el +++ /dev/null @@ -1,49 +0,0 @@ -;;; private/completion/config.el -*- lexical-binding: t; -*- - -(use-package! ido - :hook (doom-first-input . ido-mode) - :hook (ido-mode . recentf-mode) - :hook (ido-mode . ido-everywhere) - :hook (ido-mode . ido-ubiquitous-mode) - - :preface - (defadvice! +ido-run-hooks-a (&rest _) - :after #'ido-mode - (run-hooks 'ido-mode-hook)) - - :init - (setq ido-save-directory-list-file nil) - (setq ido-save-directory-list-file nil) - (setq ido-ignore-buffers '("\\` " "^\\*ESS\\*" "^\\*[Hh]elp" "^\\*.*Completions\\*$" "^\\*tramp" "^\\*cvs-" "^*Ido")) - (setq ido-separator "\n") - - :config - (defun +completion/recentf() - (interactive) - (find-file (completing-read "Recentf: " recentf-list))) - - (define-key! - [remap recentf-open-files] #'+completion/recentf - [remap completing-read] #'ido-completing-read) - - (map! - :map (ido-common-completion-map ido-file-completion-map ido-buffer-completion-map) - "C-k" #'ido-prev-match - "C-j" #'ido-next-match - "TAB" #'ido-exit-minibuffer - :map ido-file-completion-map - "~" (cmd! (if (looking-back "/" (point-min)) - (insert "~/") - (call-interactively #'self-insert-command))))) - - -(use-package! ido-sort-mtime - :hook (ido-mode . ido-sort-mtime-mode)) - - -(use-package! crm-custom - :hook (ido-mode . crm-custom-mode)) - - -(use-package! flx-ido - :hook (ido-mode . flx-ido-mode)) diff --git a/Doom/.config/doom/modules/private/completion/packages.el b/Doom/.config/doom/modules/private/completion/packages.el deleted file mode 100644 index 39f4472..0000000 --- a/Doom/.config/doom/modules/private/completion/packages.el +++ /dev/null @@ -1,8 +0,0 @@ -;; -*- no-byte-compile: t; -*- -;;; private/completion/packages.el - - -(package! flx-ido) -(package! ido-completing-read+) -(package! ido-sort-mtime) -(package! crm-custom) -- cgit v1.2.3-13-gbd6f