diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-07-13 17:47:14 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-07-13 18:37:58 +0100 |
commit | 0afcbaa975f281c2f6b131b0b4138c91410ff327 (patch) | |
tree | de0b07abf6706e5bbe9081def5f0442217a56054 /Emacs | |
parent | d686a2fb179ae8f0e19adc7f2de3cb36d1d961d5 (diff) | |
download | dotfiles-0afcbaa975f281c2f6b131b0b4138c91410ff327.tar.gz dotfiles-0afcbaa975f281c2f6b131b0b4138c91410ff327.tar.bz2 dotfiles-0afcbaa975f281c2f6b131b0b4138c91410ff327.zip |
(Emacs)~cleaned up some text
Diffstat (limited to 'Emacs')
-rw-r--r-- | Emacs/.config/emacs/config.org | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 09cb9c8..57f9f58 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -2281,7 +2281,9 @@ much faster. 2023-03-26: I've found Eglot to be useful sometimes, but many of the projects I work on don't require a heavy server setup to efficiently -edit and check for errors; Emacs provides a lot of functionality. +edit and check for errors; Emacs provides a lot of functionality. So +by default I've disabled it, using =M-x eglot= to startup the LSP +server when I need it. #+begin_src emacs-lisp (use-package eglot :after project @@ -2303,7 +2305,6 @@ Flycheck is the checking system for Emacs. I don't necessarily like having all my code checked all the time, so I haven't added a hook to prog-mode as it would be better for me to decide when I want checking and when I don't. - #+begin_src emacs-lisp (use-package flycheck :commands (flycheck-mode flycheck-list-errors) @@ -2365,8 +2366,9 @@ free. #+end_src ** Aggressive indenting Essentially my dream editing experience: when I type stuff in, try and -indent it for me on the fly. Just checkout the [[https://github.com/Malabarba/aggressive-indent-mode][page]], any description -I give won't do it justice. +indent it for me on the fly. Just checkout the +[[https://github.com/Malabarba/aggressive-indent-mode][page]], any +description I give won't do it justice. #+begin_src emacs-lisp (use-package aggressive-indent |