Move disabled sections below

This commit is contained in:
contrapunctus 2022-01-15 18:42:43 +05:30
parent 11865af0b7
commit bf3ea9abc1
1 changed files with 71 additions and 71 deletions

142
init.org
View File

@ -3130,77 +3130,6 @@ But with =initials=, the desired completion is often buried in the results. That
completion-styles '(initials partial-completion basic emacs22)))
#+END_SRC
** counsel
#+BEGIN_SRC emacs-lisp
(use-package counsel
:ensure t
:bind ("M-x" . counsel-M-x)
:config
(setq counsel-find-file-ignore-regexp "\\`\\."))
#+END_SRC
** Ivy
#+BEGIN_SRC emacs-lisp
(use-package ivy
:ensure t
:commands ivy-mode
:init (ivy-rich-mode) ;; display command docstrings in `counsel-M-x'
:bind (:map ivy-minibuffer-map
("C-h" . ivy-backward-delete-char)
("C-c" . previous-line)
("C-r" . next-line)
("M-c" . ivy-previous-history-element)
("M-r" . ivy-next-history-element))
:config
(setq ivy-re-builders-alist
'((t . ivy--regex-ignore-order))))
#+END_SRC
** ivy-xref
#+BEGIN_SRC emacs-lisp
(use-package ivy-xref
:ensure t
:config
(setq xref-show-definitions-function #'ivy-xref-show-defs))
#+END_SRC
** flx-ido :disabled:
#+BEGIN_SRC emacs-lisp
(use-package flx-ido
:disabled
:init (flx-ido-mode 1)
(setq ido-enable-flex-matching t
ido-use-faces nil))
#+END_SRC
** flx-isearch :disabled:
#+BEGIN_SRC emacs-lisp
(use-package flx-isearch
:disabled
:bind
("C-s" . #'flx-isearch-forward)
("C-r" . #'flx-isearch-backward))
;; (use-package flycheck
;; :init (global-flycheck-mode))
;; (use-package flycheck-elsa
;; :hook (emacs-lisp-mode . flycheck-elsa-setup))
#+END_SRC
** flex-isearch
:PROPERTIES:
:CREATED: 2022-01-13T20:50:41+0530
:END:
#+BEGIN_SRC emacs-lisp
(use-package flex-isearch
:disabled t
:init (flex-isearch-mode 1)
:bind
("C-M-s" . flex-isearch-forward)
("C-M-r" . flex-isearch-backward))
#+END_SRC
** company
:PROPERTIES:
:CREATED: 2022-01-05T20:16:03+0530
@ -3276,6 +3205,77 @@ But with =initials=, the desired completion is often buried in the results. That
:hook (emacs-lisp-mode . yas-global-mode))
#+END_SRC
** counsel
#+BEGIN_SRC emacs-lisp
(use-package counsel
:ensure t
:bind ("M-x" . counsel-M-x)
:config
(setq counsel-find-file-ignore-regexp "\\`\\."))
#+END_SRC
** ivy
#+BEGIN_SRC emacs-lisp
(use-package ivy
:ensure t
:commands ivy-mode
:init (ivy-rich-mode) ;; display command docstrings in `counsel-M-x'
:bind (:map ivy-minibuffer-map
("C-h" . ivy-backward-delete-char)
("C-c" . previous-line)
("C-r" . next-line)
("M-c" . ivy-previous-history-element)
("M-r" . ivy-next-history-element))
:config
(setq ivy-re-builders-alist
'((t . ivy--regex-ignore-order))))
#+END_SRC
** ivy-xref
#+BEGIN_SRC emacs-lisp
(use-package ivy-xref
:ensure t
:config
(setq xref-show-definitions-function #'ivy-xref-show-defs))
#+END_SRC
** flx-ido :disabled:
#+BEGIN_SRC emacs-lisp
(use-package flx-ido
:disabled
:init (flx-ido-mode 1)
(setq ido-enable-flex-matching t
ido-use-faces nil))
#+END_SRC
** flx-isearch :disabled:
#+BEGIN_SRC emacs-lisp
(use-package flx-isearch
:disabled
:bind
("C-s" . #'flx-isearch-forward)
("C-r" . #'flx-isearch-backward))
;; (use-package flycheck
;; :init (global-flycheck-mode))
;; (use-package flycheck-elsa
;; :hook (emacs-lisp-mode . flycheck-elsa-setup))
#+END_SRC
** flex-isearch :disabled:
:PROPERTIES:
:CREATED: 2022-01-13T20:50:41+0530
:END:
#+BEGIN_SRC emacs-lisp
(use-package flex-isearch
:disabled t
:init (flex-isearch-mode 1)
:bind
("C-M-s" . flex-isearch-forward)
("C-M-r" . flex-isearch-backward))
#+END_SRC
* misc keybindings
#+BEGIN_SRC emacs-lisp
(global-set-key (kbd "M-w") 'kill-ring-save)