Add previously missing SQL-indent
This commit is contained in:
parent
866fca1028
commit
e122cca29d
4 changed files with 28 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue