annotate .elisp/settings/90.colors.el @ 351:bef29d49d19f

safe-paste: adds support for bracketed paste mode to zsh Since I don't use oh-my-zsh, just import their code directly with a reference. Based on the site where I learned about this [0], it's originally from [1], and I downloaded it from [2]. 0: https://cirw.in/blog/bracketed-paste 1: http://www.zsh.org/mla/users/2011/msg00367.html 2: https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/plugins/safe-paste/safe-paste.plugin.zsh
author Augie Fackler <raf@durin42.com>
date Mon, 10 Nov 2014 09:26:04 -0500
parents 198b3cb99677
children 27e8ad5acedf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
217
e4842709368a emacs: move colors to their own file and migrate to whitespace from wspace
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
1 ;; custom color scheme
e4842709368a emacs: move colors to their own file and migrate to whitespace from wspace
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
2 (setq default-frame-alist
e4842709368a emacs: move colors to their own file and migrate to whitespace from wspace
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
3 '((width . 80)
e4842709368a emacs: move colors to their own file and migrate to whitespace from wspace
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
4 (cursor-color . "white")
e4842709368a emacs: move colors to their own file and migrate to whitespace from wspace
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
5 (cursor-type . box)
e4842709368a emacs: move colors to their own file and migrate to whitespace from wspace
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
6 (foreground-color . "white")
296
198b3cb99677 emacs: clean up new frame initialization thanks to slb
Augie Fackler <raf@durin42.com>
parents: 217
diff changeset
7 (background-color . "black")
198b3cb99677 emacs: clean up new frame initialization thanks to slb
Augie Fackler <raf@durin42.com>
parents: 217
diff changeset
8 (tool-bar-lines . 0)
198b3cb99677 emacs: clean up new frame initialization thanks to slb
Augie Fackler <raf@durin42.com>
parents: 217
diff changeset
9 )
198b3cb99677 emacs: clean up new frame initialization thanks to slb
Augie Fackler <raf@durin42.com>
parents: 217
diff changeset
10 initial-frame-alist default-frame-alist)
217
e4842709368a emacs: move colors to their own file and migrate to whitespace from wspace
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
11
e4842709368a emacs: move colors to their own file and migrate to whitespace from wspace
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
12 ;; tell ipython we have a dark background
e4842709368a emacs: move colors to their own file and migrate to whitespace from wspace
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
13 (setq py-python-command-args (quote ("-i")))
e4842709368a emacs: move colors to their own file and migrate to whitespace from wspace
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
14
e4842709368a emacs: move colors to their own file and migrate to whitespace from wspace
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
15 (set-face-foreground 'magit-diff-add "DarkGreen")
e4842709368a emacs: move colors to their own file and migrate to whitespace from wspace
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
16 (set-face-background 'magit-item-highlight "grey19")
e4842709368a emacs: move colors to their own file and migrate to whitespace from wspace
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
17
e4842709368a emacs: move colors to their own file and migrate to whitespace from wspace
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
18 (set-face-background 'whitespace-line "red4")
e4842709368a emacs: move colors to their own file and migrate to whitespace from wspace
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
19 (set-face-background 'whitespace-tab "tan")
e4842709368a emacs: move colors to their own file and migrate to whitespace from wspace
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
20 (set-face-background 'whitespace-trailing "red")