diff --git a/init.el b/init.el index 700315f696aa2366ef89fda4c9d5d2270d02f388..366982a175ba9fcdf4717c9a4d08306a01a1fb35 100644 --- a/init.el +++ b/init.el @@ -43,7 +43,7 @@ '(org-startup-indented t) '(package-selected-packages (quote - (rainbow-delimiters alect-theme zero-dark-theme autumn-light-theme solarized-dark-theme misterioso misterioso-theme zenburn sourcerer-theme flycheck-pos-tip flycheck-clojure ox-reveal posframe processing-snippets processing-mode rg deadgrep flycheck-rust cargo racer yasnippet-classic-snippets rustic lsp-rust lsp-java company-lsp lsp-ui lsp-mode lsp yasnippet-snippets counsel-spotify exec-path-from-shell easy-kill auto-yasnippet org-pdfview pdf-tools atomic-chrome mingus simple-mpc pcre2el ag wgrep-ag wgrep haskell-mode aggressive-indent treemacs-projectile treemacs prodigy origami dumb-jump cider ggtags circe-notifications circe org-gcal mu4e-alert git-timemachine git-gutter magit hydra default-text-scale smartparens projectile auctex tern-auto-complete tern js2-refactor ac-js2 js2-mode emmet-mode web-mode iedit expand-region multiple-cursors hungry-delete beacon undo-tree virtualenvwrapper elpy flycheck doom-modeline doom-themes tao-theme poet-theme faff-theme zerodark-theme alect-themes moe-theme base16-theme zenburn-theme color-theme-modern company-jedi irony-eldoc company-irony company counsel ace-window htmlize noflet org-bullets which-key try use-package))) + (magit-gerrit rainbow-delimiters alect-theme zero-dark-theme autumn-light-theme solarized-dark-theme misterioso misterioso-theme zenburn sourcerer-theme flycheck-pos-tip flycheck-clojure ox-reveal posframe processing-snippets processing-mode rg deadgrep flycheck-rust cargo racer yasnippet-classic-snippets rustic lsp-rust lsp-java company-lsp lsp-ui lsp-mode lsp yasnippet-snippets counsel-spotify exec-path-from-shell easy-kill auto-yasnippet org-pdfview pdf-tools atomic-chrome mingus simple-mpc pcre2el ag wgrep-ag wgrep haskell-mode aggressive-indent treemacs-projectile treemacs prodigy origami dumb-jump cider ggtags circe-notifications circe org-gcal mu4e-alert git-timemachine git-gutter magit hydra default-text-scale smartparens projectile auctex tern-auto-complete tern js2-refactor ac-js2 js2-mode emmet-mode web-mode iedit expand-region multiple-cursors hungry-delete beacon undo-tree virtualenvwrapper elpy flycheck doom-modeline doom-themes tao-theme poet-theme faff-theme zerodark-theme alect-themes moe-theme base16-theme zenburn-theme color-theme-modern company-jedi irony-eldoc company-irony company counsel ace-window htmlize noflet org-bullets which-key try use-package))) '(sp-escape-quotes-after-insert nil)) (setq max-lisp-eval-depth 10000) (setq max-specpdl-size 10000) diff --git a/myinit.org b/myinit.org index 5f9e3bc2df77fadab812f1685d0db2546567ec91..12c0e16a66cfebef4d4f4b98f7267c34b16dd53e 100644 --- a/myinit.org +++ b/myinit.org @@ -339,6 +339,19 @@ (declare-function rainbow-delimiters-mode "rainbow-delimiters.el")) (add-hook 'prog-mode-hook #'rainbow-delimiters-mode)) +#+END_SRC +* Auto pairs +#+BEGIN_SRC emacs-lisp +(use-package autopair + :ensure t + :init + (eval-when-compile + ;; Silence missing function warnings + (declare-function autopair-global-mode "autopair.el")) + :config + (autopair-global-mode t) + ) + #+END_SRC * Reveal.js #+BEGIN_SRC emacs-lisp :tangle no @@ -779,6 +792,11 @@ (bind-key "C-x g" 'magit-status) )) +(use-package magit-gerrit + :ensure t + :after magit + ) + (setq magit-status-margin '(t "%Y-%m-%d %H:%M " magit-log-margin-width t 18)) (use-package git-gutter