feat(lisp): Install and enable adjust-parens
This commit is contained in:
parent
b713aab0d1
commit
ed4cc264fa
3 changed files with 3 additions and 1 deletions
1
init.el
1
init.el
|
@ -23,6 +23,7 @@
|
|||
;; editor packages
|
||||
ace-jump-mode
|
||||
ace-window
|
||||
adjust-parens
|
||||
browse-kill-ring
|
||||
cargo
|
||||
company
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
'(ns-right-command-modifier (quote meta))
|
||||
'(package-selected-packages
|
||||
(quote
|
||||
(ace-window exwm which-key pandoc elnode fish-mode nix-mode yaml-mode undo-tree terraform-mode switch-window smart-mode-line rust-mode rainbow-mode rainbow-delimiters puppet-mode pkgbuild-mode password-store paredit multi-term multiple-cursors markdown-mode+ magit iy-go-to-char idle-highlight-mode hi2 helm haskell-mode gruber-darker-theme go-mode flycheck erlang dockerfile-mode confluence browse-kill-ring ag ace-jump-mode)))
|
||||
(adjust-parens parinfer pdf-tools groovy-mode ace-window exwm which-key pandoc elnode fish-mode nix-mode yaml-mode undo-tree terraform-mode switch-window smart-mode-line rust-mode rainbow-mode rainbow-delimiters puppet-mode pkgbuild-mode password-store paredit multi-term multiple-cursors markdown-mode+ magit iy-go-to-char idle-highlight-mode hi2 helm haskell-mode gruber-darker-theme go-mode flycheck erlang dockerfile-mode confluence browse-kill-ring ag ace-jump-mode)))
|
||||
'(require-final-newline (quote visit-save)))
|
||||
(custom-set-faces
|
||||
;; custom-set-faces was added by Custom.
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
|
||||
(add-to-list 'lisp-mode-hook #'company-mode)
|
||||
(add-to-list 'lisp-mode-hook #'paredit-mode)
|
||||
(add-to-list 'lisp-mode-hook #'adjust-parens-mode)
|
||||
|
||||
(define-key lisp-mode-map (kbd "TAB")
|
||||
#'company-indent-or-complete-common)
|
||||
|
|
Loading…
Reference in a new issue