diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-09-29 17:26:59 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-09-29 17:27:10 +0100 |
commit | d69deba256f699f24ca30038713b9594366d81cc (patch) | |
tree | be70afc63b1365b892abce628b8a3dad28a94037 | |
parent | 85decc9f11c4c55c197e77420750bef166c122b3 (diff) | |
download | dotfiles-d69deba256f699f24ca30038713b9594366d81cc.tar.gz dotfiles-d69deba256f699f24ca30038713b9594366d81cc.tar.bz2 dotfiles-d69deba256f699f24ca30038713b9594366d81cc.zip |
(Emacs)~minor fixes and changes
-rw-r--r-- | Emacs/.config/emacs/config.org | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 08f0f2c..4eec654 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -269,7 +269,6 @@ moment), bind to general some basic binds. :straight nil :general (general-def - :states 'normal "C-x d" #'delete-frame)) (use-package simple @@ -912,8 +911,11 @@ the projectile command map for quick access. (projectile-mode)) #+end_src *** Counsel projectile +:PROPERTIES: +:header-args:emacs-lisp: :tangle no +:END: Counsel projectile provides the ivy interface to projectile commands, which is really useful. -#+begin_src emacs-lisp :tangle no +#+begin_src emacs-lisp (use-package counsel-projectile :after (projectile counsel) :config @@ -1539,10 +1541,7 @@ results to the client, done through JSON. "r" #'eglot-rename "R" #'eglot-reconnect) :init - (setq eglot-stay-out-of '(flymake)) - (defun project-root (PROJECT) - "Return the single root of a project." - (car (project-roots PROJECT)))) + (setq eglot-stay-out-of '(flymake))) #+end_src *** Flycheck Flycheck is the checking system for Emacs. I don't necessarily like |