diff options
author | Griffin Smith <root@gws.fyi> | 2019-03-11T02·23-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2019-03-11T02·23-0400 |
commit | 6adfc92a2c4c8770897ad7223905868a8efa05df (patch) | |
tree | 0e495c41e4ea162e12467de02fa8819b4558849a /config.el | |
parent | b342415667464aeb8586ddbdaa2a124bc97fb3d9 (diff) |
Start work on company-sql
Diffstat (limited to 'config.el')
-rw-r--r-- | config.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config.el b/config.el index ffc25fa51796..04f1ea704eeb 100644 --- a/config.el +++ b/config.el @@ -14,6 +14,8 @@ (load! "utils") +(load! "company-sql") + ; (defconst rust-src-path ; (-> "/Users/griffin/.cargo/bin/rustc --print sysroot" ; shell-command-to-string @@ -884,6 +886,10 @@ (sql-mode-hook . sqlup-mode) (sql-interactive-mode-hook . sqlup-mode)) +(def-package! emacsql) +(def-package! emacsql-psql + :after (emacsql)) + (def-package! yapfify :hook (python-mode-hook . yapf-mode)) |