Clean up
This commit is contained in:
parent
4076c42edd
commit
6e2fff449c
4 changed files with 24 additions and 21 deletions
34
core/core.el
34
core/core.el
|
@ -13,25 +13,26 @@
|
|||
;;;
|
||||
|
||||
(setq-default
|
||||
confirm-kill-emacs (lambda (prompt) (y-or-n-p ">> Gee, I dunno Brain... Are you sure?"))
|
||||
|
||||
ad-redefinition-action 'accept ; silence the advised function warnings
|
||||
compilation-always-kill t
|
||||
compilation-ask-about-save nil
|
||||
compilation-scroll-output t
|
||||
confirm-kill-emacs (lambda (prompt) (y-or-n-p ">> Gee, I dunno Brain... Are you sure?"))
|
||||
echo-keystrokes 0.02 ; show me those keystrokes
|
||||
ediff-diff-options "-w"
|
||||
ediff-split-window-function 'split-window-horizontally ; side-by-side diffs
|
||||
ediff-window-setup-function 'ediff-setup-windows-plain ; no extra frames
|
||||
enable-recursive-minibuffers nil ; no minibufferception
|
||||
echo-keystrokes 0.02 ; show me what I type
|
||||
history-length 1000
|
||||
inhibit-startup-echo-area-message "hlissner" ; username shuts up emacs
|
||||
inhibit-startup-screen t ; don't show emacs start screen
|
||||
initial-major-mode 'text-mode ; initial scratch buffer mode
|
||||
initial-scratch-message nil
|
||||
major-mode 'text-mode
|
||||
ring-bell-function 'ignore ; silence of the bells!
|
||||
save-interprogram-paste-before-kill nil
|
||||
sentence-end-double-space nil
|
||||
enable-recursive-minibuffers nil ; no minibufferception
|
||||
compilation-always-kill t ; kill compilation process before spawning another
|
||||
compilation-ask-about-save nil ; save all buffers before compiling
|
||||
compilation-scroll-output t ; scroll with output while compiling
|
||||
ediff-diff-options "-w"
|
||||
ediff-split-window-function 'split-window-horizontally ; side-by-side diffs
|
||||
ediff-window-setup-function 'ediff-setup-windows-plain ; no extra frames
|
||||
inhibit-startup-echo-area-message "hlissner" ; username shuts up emacs
|
||||
inhibit-startup-screen t ; don't show emacs start screen
|
||||
initial-scratch-message nil
|
||||
initial-major-mode 'text-mode ; initial scratch buffer mode
|
||||
major-mode 'text-mode
|
||||
|
||||
;; http://ergoemacs.org/emacs/emacs_stop_cursor_enter_prompt.html
|
||||
minibuffer-prompt-properties '(read-only t point-entered minibuffer-avoid-prompt face minibuffer-prompt)
|
||||
|
@ -40,13 +41,12 @@
|
|||
eval-expression-print-length nil
|
||||
eval-expression-print-level nil
|
||||
|
||||
;; Disable all backups (that's what git/dropbox are for)
|
||||
bookmark-save-flag t
|
||||
bookmark-default-file (concat narf-temp-dir "bookmarks")
|
||||
|
||||
;; Disable all backups (that's what git/dropbox are for)
|
||||
auto-save-default nil
|
||||
auto-save-list-file-name (concat narf-temp-dir "autosave")
|
||||
|
||||
;; In case I want to reactivate backup files
|
||||
make-backup-files nil
|
||||
create-lockfiles nil
|
||||
backup-directory-alist `((".*" . ,(concat narf-temp-dir "backup/")))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue