! -> eval-when-compile
This commit is contained in:
parent
a5bf8a5190
commit
745256eabd
4 changed files with 9 additions and 8 deletions
|
@ -50,7 +50,7 @@
|
|||
(define-key company-active-map (kbd "C-w") nil)
|
||||
|
||||
(shut-up!
|
||||
(setq company-statistics-file (! (concat narf-temp-dir "company-statistics-cache.el")))
|
||||
(setq company-statistics-file (concat narf-temp-dir "company-stats-cache.el"))
|
||||
(require 'company-statistics)
|
||||
(company-statistics-mode))
|
||||
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
(when window-system
|
||||
(setenv "SHELL" "/usr/local/bin/zsh")
|
||||
(setenv "EMACS" "1") ; make sure the world knows
|
||||
|
||||
(setq exec-path (! (require 'exec-path-from-shell)
|
||||
(setq exec-path (eval-when-compile
|
||||
(require 'exec-path-from-shell)
|
||||
(exec-path-from-shell-initialize)
|
||||
exec-path)))
|
||||
|
||||
|
|
|
@ -16,13 +16,14 @@
|
|||
ido-create-new-buffer 'always
|
||||
ido-enable-tramp-completion t
|
||||
ido-enable-last-directory-history t
|
||||
ido-save-directory-list-file (! (concat narf-temp-dir "ido.last")))
|
||||
ido-save-directory-list-file (concat narf-temp-dir "ido.last"))
|
||||
:config
|
||||
(add-to-list 'ido-ignore-files "\\`.DS_Store$")
|
||||
(add-to-list 'ido-ignore-files "Icon\\?$")
|
||||
|
||||
(ido-mode 1)
|
||||
(ido-everywhere 1)
|
||||
|
||||
(require 'ido-ubiquitous)
|
||||
(ido-ubiquitous-mode 1)
|
||||
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
(use-package workgroups2
|
||||
:when window-system
|
||||
:init
|
||||
(setq wg-session-file (! (expand-file-name "wg-default" narf-temp-dir))
|
||||
wg-workgroup-directory (! (expand-file-name "workgroups" narf-temp-dir))
|
||||
(setq wg-session-file (expand-file-name "wg-default" narf-temp-dir)
|
||||
wg-workgroup-directory (expand-file-name "workgroups" narf-temp-dir)
|
||||
wg-first-wg-name "main"
|
||||
wg-session-load-on-start t
|
||||
wg-mode-line-display-on nil
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue