Skip to content
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.

Commit

Permalink
Add alias for tail; clean up hippie-expand.
Browse files Browse the repository at this point in the history
  • Loading branch information
technomancy committed Dec 1, 2010
1 parent 972259c commit 2e8ee75
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions starter-kit-misc.el
Expand Up @@ -16,16 +16,19 @@
(ansi-color-for-comint-mode-on)

(setq visible-bell t
fringe-mode (cons 4 0)
echo-keystrokes 0.1
font-lock-maximum-decoration t
inhibit-startup-message t
transient-mark-mode t
color-theme-is-global t
color-theme-is-cumulative nil

This comment has been minimized.

Copy link
@bjorne

bjorne Dec 1, 2010

This line makes my color themes very boring (tested blackboard and twilight); no bold face and no colors. I guess they do not inherit from the default theme with this option, right?

This comment has been minimized.

Copy link
@mattharrison

mattharrison Dec 1, 2010

I'm gettingSame the issue as bjorne. Also wrt themes, I think it would be better to not have style changes in this file. Throw them into a theme if you want them. As a theme creator it's annoying to have what I'd call side-effect themes scattered about.

This comment has been minimized.

Copy link
@technomancy

technomancy Dec 1, 2010

Author Owner

Hmm... someone told me that this would allow you to switch from one color-theme to another, but I just tried it and it doesn't work anyway, so I'll get rid of it.

shift-select-mode nil
mouse-yank-at-point t
require-final-newline t
truncate-partial-width-windows nil
uniquify-buffer-name-style 'forward
ffap-machine-p-known 'reject
whitespace-style '(trailing lines space-before-tab
indentation space-after-tab)
whitespace-line-column 100
Expand Down Expand Up @@ -81,9 +84,13 @@
(defalias 'yes-or-no-p 'y-or-n-p)
(random t) ;; Seed the random-number generator

(defalias 'auto-revert-tail-mode 'tail-mode)

;; Hippie expand: at times perhaps too hip
(delete 'try-expand-line hippie-expand-try-functions-list)
(delete 'try-expand-list hippie-expand-try-functions-list)
(delete 'try-complete-file-name-partially hippie-expand-try-functions-list)
(delete 'try-complete-file-name hippie-expand-try-functions-list)

;; Don't clutter up directories with files~
(setq backup-directory-alist `(("." . ,(expand-file-name
Expand Down

0 comments on commit 2e8ee75

Please sign in to comment.