summaryrefslogtreecommitdiffstats
path: root/emacs.d/init.el
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-04-07 07:21:02 +0200
committerDavid Robillard <d@drobilla.net>2017-04-07 07:21:02 +0200
commite377720babb55531ad0419602931d12d4138fa92 (patch)
tree2dd1440460185024e4ab39e055196cfca4bc251c /emacs.d/init.el
parent678787151a3e770c736670e96ae8c3cf4efce362 (diff)
downloaddotfiles-e377720babb55531ad0419602931d12d4138fa92.tar.gz
dotfiles-e377720babb55531ad0419602931d12d4138fa92.tar.bz2
dotfiles-e377720babb55531ad0419602931d12d4138fa92.zip
Define palette as customizable variables
Diffstat (limited to 'emacs.d/init.el')
-rw-r--r--emacs.d/init.el17
1 files changed, 7 insertions, 10 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el
index 94c0b13..a23e840 100644
--- a/emacs.d/init.el
+++ b/emacs.d/init.el
@@ -93,6 +93,7 @@
'(auto-revert-interval 1)
'(backup-by-copying t)
'(backup-directory-alist (\` ((".*" \, temporary-file-directory))))
+ '(browse-url-firefox-new-window-is-tab t)
'(column-number-mode t)
'(compilation-scroll-output t)
'(cursor-in-non-selected-windows box)
@@ -168,23 +169,17 @@
" " jabber-events-message " " jabber-chatstates-message)))
'(jabber-roster-line-format " %c %-25n %u %-8s %S")
'(jshint-mode-node-program "nodejs")
+ '(magit-auto-revert-mode t)
'(magit-diff-refine-hunk (quote all))
'(menu-bar-mode nil)
'(package-selected-packages
(quote
- (counsel-gtags counsel-projectile flyspell-correct-ivy ivy clang-format swift-mode projectile ggtags auctex use-package spaceline pdf-tools markdown-mode magit glsl-mode dired-rainbow dired+)))
+ (auctex clang-format counsel-gtags counsel-projectile dired+ dired-rainbow flyspell-correct-ivy ggtags glsl-mode ivy magit markdown-mode n3-mode pdf-tools projectile spaceline swift-mode use-package)))
'(pdf-view-midnight-colors (quote ("#C3D1D1" . "#141414")))
'(powerline-default-separator nil)
'(projectile-completion-system (quote ivy))
'(projectile-enable-caching t)
- '(projectile-mode-line
- (quote
- (:eval
- (if (file-remote-p default-directory)
- " P[R]"
- (format " P[%s]"
- (projectile-project-name))))))
- '(projectile-use-git-grep t)
+ '(projectile-mode-line nil)
'(quack-pretty-lambda-p t)
'(quack-run-scheme-always-prompts-p nil)
'(savehist-mode t)
@@ -203,7 +198,7 @@
;; 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.
- '(default ((t (:inherit nil :stipple nil :background "#141414" :foreground "#C3D1D1" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 120 :width normal :foundry "unknown" :family "DejaVu Sans Mono"))))
+ '(default ((t (:inherit nil :stipple nil :background "#141414" :foreground "#C3D1D1" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 90 :width normal :foundry "unknown" :family "DejaVu Sans Mono"))))
'(bold ((t (:weight bold))))
'(compilation-column-number ((t (:foreground "grey40"))))
'(cursor ((t (:background "grey80"))))
@@ -246,6 +241,7 @@
'(font-latex-italic-face ((t (:inherit italic :foreground "#859900"))))
'(font-latex-math-face ((t (:foreground "#DC322F"))))
'(font-latex-sectioning-5-face ((t (:inherit nil :foreground "#B58900" :weight bold))))
+ '(font-latex-sedate-face ((t (:foreground "#2aa198"))))
'(font-latex-string-face ((t (:foreground "#F2804F"))))
'(font-latex-warning-face ((t (:inherit bold :foreground "#FF6E64"))))
'(font-lock-comment-face ((t (:foreground "#6c71c4"))))
@@ -368,6 +364,7 @@
(global-set-key (kbd "C-c <") 'first-error)
(global-set-key (kbd "C-c =") 'set-variable)
+(global-set-key (kbd "C-c I") 'clang-format-region)
(global-set-key (kbd "C-c R") 'replace-regexp)
(global-set-key (kbd "C-c a") 'align)
(global-set-key (kbd "C-c c") 'comment-region)