Add previously missing SQL-indent

This commit is contained in:
Maciej 2017-12-28 22:30:53 +02:00
parent 866fca1028
commit e122cca29d
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
4 changed files with 28 additions and 4 deletions

View file

@ -40,16 +40,16 @@
nil
t))
(defun call-in-windowed-mode (callee)
(defun byte-compile-in-windowed-mode ()
"Call function passed as CALLEE only if run in window mode."
(interactive)
(if (display-graphic-p)
(progn
(funcall callee))))
(byte-compile-init-dir))))
;; (call-in-windowed-mode 'byte-compile-init-dir)
(add-hook 'kill-emacs-hook 'byte-compile-init-dir)
(add-hook 'kill-emacs-hook 'byte-compile-in-windowed-mode)
(add-hook 'emacs-lisp-mode-hook 'remove-elc-on-save)
;; Always start in fullscreen

View file

@ -226,6 +226,10 @@
(unless (package-installed-p 'pyenv-mode)
(package-install 'pyenv-mode))
;; SQL
(unless (package-installed-p 'sql-indent)
(package-install 'sql-indent))
;; Javascript
(unless (package-installed-p 'company-tern)
(package-install 'company-tern))