diff --git a/dotfiles/Xresources b/dotfiles/Xresources index 417670a..0d1fe35 100644 --- a/dotfiles/Xresources +++ b/dotfiles/Xresources @@ -140,7 +140,7 @@ URxvt*font: xft:Inconsolata:size=8:antialias=true:hinting=true URxvt*boldFont: xft:Inconsolata:bold URxvt.letterSpace: -1 -URxvt*termName: rxvt-unicode +URxvt*termName: rxvt URxvt.urgentOnBell: true ! URxvt*foreground: color diff --git a/dotfiles/emacs.d/eshell/history b/dotfiles/emacs.d/eshell/history new file mode 100644 index 0000000..1ca9eeb --- /dev/null +++ b/dotfiles/emacs.d/eshell/history @@ -0,0 +1,3 @@ +ping google.com +clear +exit diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index 2132dbe..3fcbab3 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -79,20 +79,6 @@ (load-file "~/.emacs.d/package.el") ;;-------------------------------------------------------------------------------------- -;; Theme -;;-------------------------------------------------------------------------------------- - -(set-frame-parameter nil 'background-mode 'dark) -(set-terminal-parameter nil 'background-mode 'dark) -(load-theme 'solarized t) - -;; 10 pt font -(set-frame-font "inconsolata") -(set-face-attribute 'default nil :height 100) - -(powerline-center-theme) - -;;-------------------------------------------------------------------------------------- ;; Fill column indicator (currently set to 120 characters) ;;-------------------------------------------------------------------------------------- @@ -176,6 +162,14 @@ (projectile-global-mode) ;;------------------------------------------------------------------------------------- +;; Rainbow Delimiters (on most programming modes) +;;------------------------------------------------------------------------------------- + +(require 'rainbow-delimiters) + +(add-hook 'prog-mode-hook 'rainbow-delimiters-mode) + +;;------------------------------------------------------------------------------------- ;; Key Bindings ;;------------------------------------------------------------------------------------- @@ -233,6 +227,20 @@ (global-set-key (kbd "C-x C-f") 'helm-find-files) (global-set-key (kbd "C-s") 'helm-do-ag-this-file) +;;-------------------------------------------------------------------------------------- +;; Theme +;;-------------------------------------------------------------------------------------- + +(set-frame-parameter nil 'background-mode 'dark) +(set-terminal-parameter nil 'background-mode 'dark) +(load-theme 'solarized t) + +;; 10 pt font +(set-frame-font "inconsolata") +(set-face-attribute 'default nil :height 100) + +(powerline-center-theme) + ;;------------------------------------------------------------------------------------- (custom-set-variables @@ -248,4 +256,4 @@ ;; 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. - ) + '(font-lock-comment-delimiter-face ((t (:foreground "brightgreen" :slant italic))))) diff --git a/dotfiles/emacs.d/package.el b/dotfiles/emacs.d/package.el index ab69eef..30dd750 100644 --- a/dotfiles/emacs.d/package.el +++ b/dotfiles/emacs.d/package.el @@ -4,7 +4,7 @@ fill-column-indicator flycheck-clojure flycheck-haskell flycheck-rust flycheck-pos-tip gitignore-mode haskell-mode helm helm-ag helm-projectile js2-mode less-css-mode magit neotree paredit scss-mode powerline projectile - rust-mode color-theme-solarized wrap-region) + rust-mode color-theme-solarized wrap-region rainbow-delimiters) "Packages to make sure are installed") (defun my-packages-installed-p ()