Use more completing-read in capture functions
This commit is contained in:
parent
02b0369d87
commit
2c4665ee2a
2 changed files with 36 additions and 11 deletions
19
config.org
19
config.org
|
@ -49,14 +49,21 @@ I don’t want finding files to be case-sensitive, same as in =zsh=:
|
|||
(setq read-buffer-completion-ignore-case t)
|
||||
#+END_SRC
|
||||
|
||||
Remove certain graphical elements.
|
||||
Allow typing spaces in the minibuffer.
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(setq inhibit-startup-screen t)
|
||||
(tool-bar-mode -1)
|
||||
(unless (string-equal system-type "android")
|
||||
(scroll-bar-mode -1))
|
||||
(tooltip-mode -1)
|
||||
(define-key minibuffer-local-completion-map " " 'self-insert-command)
|
||||
(define-key minibuffer-local-must-match-map " " 'self-insert-command)
|
||||
#+END_SRC
|
||||
|
||||
Remove certain graphical elements.
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(setq inhibit-startup-screen t)
|
||||
(tool-bar-mode -1)
|
||||
(unless (string-equal system-type "android")
|
||||
(scroll-bar-mode -1))
|
||||
(tooltip-mode -1)
|
||||
#+END_SRC
|
||||
|
||||
Make everything just a little tiny bit transparent unless I’m using the boring Windows desktop.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue