Add lisp-mode config
This commit is contained in:
parent
5ded88ba03
commit
67848f995f
1 changed files with 20 additions and 0 deletions
|
@ -1111,6 +1111,26 @@ Computing Environment".
|
|||
(add-hook 'c-mode-hook 'electric-indent-local-mode)
|
||||
#+END_SRC
|
||||
|
||||
** Lisp mode
|
||||
|
||||
Enable paredit mode for Common Lisp programming.
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(add-hook 'lisp-mode-hook 'paredit-mode)
|
||||
#+END_SRC
|
||||
|
||||
Enable rainbow-delimiters mode for Common Lisp programming.
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(add-hook 'lisp-mode-hook 'rainbow-delimiters-mode)
|
||||
#+END_SRC
|
||||
|
||||
Enable company mode for Common Lisp programmind.
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(add-hook 'lisp-mode-hook 'company-mode)
|
||||
#+END_SRC
|
||||
|
||||
* Applications
|
||||
|
||||
- [[file:init/dired-init.org][Dired]] :: The Emacs file manager. Very powerful, and I don't use it
|
||||
|
|
Loading…
Reference in a new issue