all repos — nixfiles @ 92142a8757c9f9d58716436dda38a0b0fe762a33

System and user configuration, managed by nix and home-manager

Merge branch 'master' of git://github.com/alanpearce/dotfiles
Alan Pearce alan@alanpearce.co.uk
Mon, 30 Mar 2015 10:07:15 +0100
commit

92142a8757c9f9d58716436dda38a0b0fe762a33

parent

2bda6f9985d68b5e5b988e0d717812c15aff1a2d

2 files changed, 11 insertions(+), 15 deletions(-)

jump to
M tag-emacs/emacs.d/init.eltag-emacs/emacs.d/init.el
@@ -228,6 +228,7 @@ (setq completion-styles '(basic initials partial-completion substring)       completion-ignore-case t)
 
 (req-package smart-tab
+  :commands (global-smart-tab-mode)
   :init (global-smart-tab-mode)
   :config (progn
             (nconc smart-tab-completion-functions-alist '((php-mode . php-complete-function)))
@@ -429,7 +430,6 @@ (kill-this-buffer)))) 
 (req-package ws-butler
   :if window-system
-  :diminish highlight-changes-mode
   :config (ws-butler-global-mode 1))
 (if (daemonp)
     (add-hook #'before-make-frame-hook (lambda () (ws-butler-global-mode 1))))
@@ -880,10 +880,11 @@ (req-package go-mode
   :mode (("\\.go\\'" . go-mode)))
 
-(req-package oracle
-  :load-path ,(expand-file-name "src/code.google.com/p/go.tools/cmd/oracle/oracle.el" (getenv "GOPATH"))
-  :init (progn
-          (add-hook 'go-mode-hook #'go-oracle-mode)))
+(when (file-exists-p "src/code.google.com/p/go.tools/cmd/oracle/oracle.el")
+  (req-package oracle
+    :load-path ,(expand-file-name "src/code.google.com/p/go.tools/cmd/oracle/oracle.el" (getenv "GOPATH"))
+    :init (progn
+            (add-hook 'go-mode-hook #'go-oracle-mode))))
 
 (req-package company-go
   :require go-mode
@@ -1032,11 +1033,11 @@ (setq eshell-directory-name "~/.emacs.d/eshell")             (add-hook 'eshell-load-hook (lambda ()
                                           (bind-key "C-c C-l" #'helm-eshell-history eshell-mode-map)))
             (req-package em-smart
-              :init (progn
-                      (setq eshell-where-to-jump 'begin
-                            eshell-review-quick-commands nil
-                            eshell-smart-space-goes-to-end t)
-                      (eshell-smart-initialize)))))
+              :config (progn
+                        (setq eshell-where-to-jump 'begin
+                              eshell-review-quick-commands nil
+                              eshell-smart-space-goes-to-end t)
+                        (eshell-smart-initialize)))))
 
 (autoload #'eshell/cd "em-dirs")
 (defun eshell-goto-current-dir (&optional arg)
M tag-zsh/config/zsh/zshrctag-zsh/config/zsh/zshrc
@@ -177,10 +177,6 @@ ############
 # Keybinds #
 ############
-#KiTTY
-bindkey "OD"    backward-word
-bindkey "OC"    forward-word
-
 #General
 bindkey "[1~"   beginning-of-line
 bindkey "[4~"   end-of-line
@@ -376,7 +372,6 @@ echo "per-directory-history is missing" fi
 
 _FASD_DATA="$HOME/.cache/zsh/fasd-data"
-autoload -U fasd
 if [[ -e ~/.config/zsh/fasd.zsh ]]
 then
 	source ~/.config/zsh/fasd.zsh