From 3c6996d21119c1d4ad3c4a72225481e5cbaa8f65 Mon Sep 17 00:00:00 2001 From: Grant Date: Thu, 19 Oct 2017 16:50:49 -0600 Subject: [PATCH] add new things --- emacs/init.el | 21 +++++++++++++++++++++ emacs/super-emacs/key-bindings.el | 1 + emacs/super-emacs/packages.el | 7 ++++++- 3 files changed, 28 insertions(+), 1 deletion(-) diff --git a/emacs/init.el b/emacs/init.el index afcb543..bc14aa6 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -1,4 +1,11 @@ ;Record startup timestamp + +;; Added by Package.el. This must come before configurations of +;; installed packages. Don't delete this line. If you don't want it, +;; just comment it out by adding a semicolon to the start of the line. +;; You may delete these explanatory comments. +(package-initialize) + (defvar super-emacs/invokation-time (current-time)) @@ -8,3 +15,17 @@ (load-file "~/.emacs.d/super-emacs/interface.el") (load-file "~/.emacs.d/super-emacs/misc.el") (load-file "~/.emacs.d/super-emacs/key-bindings.el") +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(package-selected-packages + (quote + (company-terraform terraform-mode yaml-mode company racer rust-mode magit theme-looper myterminal-controls meta-presenter which-key dired-launch material-theme neotree undo-tree ztree buffer-move powerline ace-window ace-jump-mode multiple-cursors helm)))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(default ((t (:height 120))))) diff --git a/emacs/super-emacs/key-bindings.el b/emacs/super-emacs/key-bindings.el index 343154f..a004d6b 100644 --- a/emacs/super-emacs/key-bindings.el +++ b/emacs/super-emacs/key-bindings.el @@ -14,6 +14,7 @@ ("C-x C-b" . helm-buffers-list) ("C-x C-f" . helm-find-files) ("C-x C-r" . helm-recentf) + ("C-c p h" . helm-projectile) ("M-y" . helm-show-kill-ring) ("C-;" . ace-window) ("C-S-" . buf-move-up) diff --git a/emacs/super-emacs/packages.el b/emacs/super-emacs/packages.el index fd76b70..b8c5d3e 100644 --- a/emacs/super-emacs/packages.el +++ b/emacs/super-emacs/packages.el @@ -21,8 +21,13 @@ theme-looper magit rust-mode + yaml-mode + terraform-mode + terraform-company racer company + projectile + helm-projectile )) ;Install required packages @@ -42,7 +47,7 @@ (which-key-mode) ;Setup company-mode -(setq company-dabbrev-downcase 0) +(setq company-dabbrev-downcase nil) (setq company-idle-delay 0) (setq company-minimum-prefix-length 2)