fixed conkerorrc
This commit is contained in:
commit
3f609186af
5 changed files with 1077 additions and 23 deletions
|
@ -36,7 +36,7 @@ clicks_in_new_buffer_target = OPEN_NEW_BUFFER_BACKGROUND;
|
||||||
|
|
||||||
// WEBJUMPS
|
// WEBJUMPS
|
||||||
define_webjump("delicious",
|
define_webjump("delicious",
|
||||||
"http://delicious.com/search?p=linux&lc=0&context=userposts%7Cslashed%7C&replace=no",
|
"http://delicious.com/search?p=%s&lc=0&context=userposts%7Cslashed%7C",
|
||||||
$alternative="http://delicious.com/slashed");
|
$alternative="http://delicious.com/slashed");
|
||||||
define_webjump("gmail",
|
define_webjump("gmail",
|
||||||
"https://mail.google.com/mail/#search/%s");
|
"https://mail.google.com/mail/#search/%s");
|
||||||
|
@ -74,7 +74,8 @@ interactive("delicious-post",
|
||||||
"&extended=" +
|
"&extended=" +
|
||||||
encodeURIComponent(
|
encodeURIComponent(
|
||||||
yield I.minibuffer.read(
|
yield I.minibuffer.read(
|
||||||
$prompt = "extended description: "));
|
$prompt = "extended description: ")) +
|
||||||
|
"&replace=no";
|
||||||
|
|
||||||
try {
|
try {
|
||||||
var content = yield send_http_request(
|
var content = yield send_http_request(
|
||||||
|
@ -104,7 +105,8 @@ interactive("delicious-post-link",
|
||||||
"&extended=" +
|
"&extended=" +
|
||||||
encodeURIComponent(
|
encodeURIComponent(
|
||||||
yield I.minibuffer.read(
|
yield I.minibuffer.read(
|
||||||
$prompt = "extended description: "));
|
$prompt = "extended description: ")) +
|
||||||
|
"&replace=no";
|
||||||
|
|
||||||
try {
|
try {
|
||||||
var content = yield send_http_request(
|
var content = yield send_http_request(
|
||||||
|
|
18
.emacs
18
.emacs
|
@ -15,6 +15,9 @@
|
||||||
; be old
|
; be old
|
||||||
(fset 'yes-or-no-p 'y-or-n-p) ; don't want to have to type yes or no
|
(fset 'yes-or-no-p 'y-or-n-p) ; don't want to have to type yes or no
|
||||||
|
|
||||||
|
;; Autopair Mode
|
||||||
|
(autopair-global-mode)
|
||||||
|
|
||||||
;; Vala Mode
|
;; Vala Mode
|
||||||
(add-to-list 'auto-mode-alist '("\\.vala$" . vala-mode))
|
(add-to-list 'auto-mode-alist '("\\.vala$" . vala-mode))
|
||||||
(add-to-list 'auto-mode-alist '("\\.vapi$" . vala-mode))
|
(add-to-list 'auto-mode-alist '("\\.vapi$" . vala-mode))
|
||||||
|
@ -32,4 +35,17 @@
|
||||||
|
|
||||||
;; Autocomplete
|
;; Autocomplete
|
||||||
(add-to-list 'ac-dictionary-directories "~/.emacs.d//ac-dict")
|
(add-to-list 'ac-dictionary-directories "~/.emacs.d//ac-dict")
|
||||||
(ac-config-default)
|
(ac-config-default)
|
||||||
|
|
||||||
|
(custom-set-variables
|
||||||
|
;; custom-set-variables was added by Custom.
|
||||||
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
;; Your init file should contain only one such instance.
|
||||||
|
;; If there is more than one, they won't work right.
|
||||||
|
)
|
||||||
|
(custom-set-faces
|
||||||
|
;; custom-set-faces was added by Custom.
|
||||||
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
;; Your init file should contain only one such instance.
|
||||||
|
;; If there is more than one, they won't work right.
|
||||||
|
)
|
||||||
|
|
1036
.emacs.d/autopair.el
Normal file
1036
.emacs.d/autopair.el
Normal file
File diff suppressed because it is too large
Load diff
|
@ -13,6 +13,6 @@
|
||||||
"~/.emacs.d/batch-mode.el" "A Major mode for editing Batch files" t)
|
"~/.emacs.d/batch-mode.el" "A Major mode for editing Batch files" t)
|
||||||
(autoload 'rainbow-mode
|
(autoload 'rainbow-mode
|
||||||
"~/.emacs.d/rainbow-mode.el" "A Minor mode for showing colors inline" t)
|
"~/.emacs.d/rainbow-mode.el" "A Minor mode for showing colors inline" t)
|
||||||
|
(load-file "~/.emacs.d/autopair.el")
|
||||||
(load-file "~/.emacs.d/auto-complete-config.el")
|
(load-file "~/.emacs.d/auto-complete-config.el")
|
||||||
(require 'auto-complete-config)
|
(require 'auto-complete-config)
|
|
@ -12,24 +12,24 @@
|
||||||
(cursor-color . "#FFFFFF")
|
(cursor-color . "#FFFFFF")
|
||||||
(foreground-color . "#FFFFFF")
|
(foreground-color . "#FFFFFF")
|
||||||
(mouse-color . "#000000"))
|
(mouse-color . "#000000"))
|
||||||
(org-level-1 ((t (:foreground "#5BFD5B" :weight normal))))
|
(org-level-1 ((t (:foreground "#5BFD5B" :weight normal))))
|
||||||
(org-level-2 ((t (:foreground "#379A37" :weight normal))))
|
(org-level-2 ((t (:foreground "#379A37" :weight normal))))
|
||||||
(org-level-3 ((t (:foreground "#757575" :weight normal))))
|
(org-level-3 ((t (:foreground "#757575" :weight normal))))
|
||||||
(org-level-4 ((t (:foreground "#778899" :weight normal))))
|
(org-level-4 ((t (:foreground "#778899" :weight normal))))
|
||||||
(org-level-5 ((t (:foreground "#9898FF" :weight normal))))
|
(org-level-5 ((t (:foreground "#9898FF" :weight normal))))
|
||||||
(org-level-6 ((t (:foreground "#0000B0" :weight normal))))
|
(org-level-6 ((t (:foreground "#0000B0" :weight normal))))
|
||||||
(org-level-7 ((t (:foreground "#740091" :weight normal))))
|
(org-level-7 ((t (:foreground "#740091" :weight normal))))
|
||||||
(org-level-8 ((t (:foreground "#B275C1" :weight normal))))
|
(org-level-8 ((t (:foreground "#B275C1" :weight normal))))
|
||||||
(fringe ((t (:background "#000000"))))
|
(fringe ((t (:background "#000000"))))
|
||||||
(mode-line ((t (:foreground "#B3B3B3" :background "#43527A"))))
|
(mode-line ((t (:foreground "#B3B3B3" :background "#43527A" :background "#000000" :box nil))))
|
||||||
(region ((t (:background "#3D3D3D"))))
|
(region ((t (:background "#3D3D3D"))))
|
||||||
(minibuffer-prompt ((t (:foreground "#72F3FF" :bold t))))
|
(minibuffer-prompt ((t (:foreground "#72F3FF" :bold t))))
|
||||||
(font-lock-builtin-face ((t (:foreground "#C436C4"))))
|
(font-lock-builtin-face ((t (:foreground "#C436C4"))))
|
||||||
(font-lock-comment-face ((t (:foreground "#427240" :bold t))))
|
(font-lock-comment-face ((t (:foreground "#00A000" :background "#004000" :bold t :box (:line-width 1 :color "#006000" :style nil)))))
|
||||||
(font-lock-function-name-face ((t (:foreground "#0FFF28"))))
|
(font-lock-function-name-face ((t (:foreground "#0FFF28"))))
|
||||||
(font-lock-keyword-face ((t (:foreground "#6B84FF"))))
|
(font-lock-keyword-face ((t (:foreground "#4E61BB" :bold t))))
|
||||||
(font-lock-string-face ((t (:foreground "#E00900"))))
|
(font-lock-string-face ((t (:foreground "#E00900"))))
|
||||||
(font-lock-type-face ((t (:foreground "#8522DD"))))
|
(font-lock-type-face ((t (:foreground "#8522DD"))))
|
||||||
(font-lock-variable-name-face ((t (:foreground "#18EFF2"))))
|
(font-lock-variable-name-face ((t (:foreground "#18EFF2"))))
|
||||||
(font-lock-warning-face ((t (:foreground "#FF0000" :bold t)))))))
|
(font-lock-warning-face ((t (:foreground "#FF0000" :bold t)))))))
|
||||||
(provide 'color-theme-weirdness)
|
(provide 'color-theme-weirdness)
|
Loading…
Reference in a new issue