diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-05-07 23:54:44 +0530 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-05-07 23:54:44 +0530 |
commit | a4e68b7bf9f4875d2c0da6f54c3cb8c7bc853346 (patch) | |
tree | e8cce8153e15e0dcc475ea6e679696dca9fc8cab /Doom/.config/doom/modules/private/completion | |
parent | 6b6055a85567c04fd9fabf67603fbeaa7e51df7b (diff) | |
download | dotfiles-a4e68b7bf9f4875d2c0da6f54c3cb8c7bc853346.tar.gz dotfiles-a4e68b7bf9f4875d2c0da6f54c3cb8c7bc853346.tar.bz2 dotfiles-a4e68b7bf9f4875d2c0da6f54c3cb8c7bc853346.zip |
(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.
Diffstat (limited to 'Doom/.config/doom/modules/private/completion')
-rw-r--r-- | Doom/.config/doom/modules/private/completion/config.el | 49 | ||||
-rw-r--r-- | Doom/.config/doom/modules/private/completion/packages.el | 8 |
2 files changed, 0 insertions, 57 deletions
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) |