Browse Source

Welp

master
Taylor Bockman 9 years ago
parent
commit
9e2527cb40
  1. 12
      dotfiles/emacs.d/eshell/history
  2. 18
      dotfiles/emacs.d/init.el

12
dotfiles/emacs.d/eshell/history

@ -8,8 +8,14 @@ ping google.com
git diff git diff
export TERM=rxvt-256color export TERM=rxvt-256color
find find
npm
clear
ls ls
npm
clear clear
echo $LANG
echo $LC_ALL
npm
echo "\[30m"
echo "\e[30m"
echo "\e[91m"
echo -en "\e[91m"
echo -en "\\e[91m"
scheme

18
dotfiles/emacs.d/init.el

@ -1,4 +1,4 @@
;;-------------------------------------------------------------------------------------- ;;--------------------------------------------------------------------------------------
;; ;;
;; Emacs Configuration file ;; Emacs Configuration file
;; ;;
@ -50,6 +50,19 @@
(setq inhibit-splash-screen t) (setq inhibit-splash-screen t)
;;-------------------------------------------------------------------------------------- ;;--------------------------------------------------------------------------------------
;; Prefer UTF-8 for buffers
;;--------------------------------------------------------------------------------------
;; (prefer-coding-system 'utf-8)
;; (set-terminal-coding-system 'utf-8)
(defun set-buffer-utf8 ()
(set-buffer-process-coding-system 'iso-8859-8 'iso-8859-8)
)
(add-hook 'eshell-mode-hook 'set-buffer-utf8)
;;--------------------------------------------------------------------------------------
;; Conditionally load urxvt files to fix weird bindings ;; Conditionally load urxvt files to fix weird bindings
;;-------------------------------------------------------------------------------------- ;;--------------------------------------------------------------------------------------
@ -338,6 +351,9 @@
(info) (info)
) )
;; Correct the path
(setenv "PATH" (concat "/usr/local/bin:/usr/local/sbin:" (getenv "PATH")))
;;------------------------------------------------------------------------------------- ;;-------------------------------------------------------------------------------------
;; Alignment ;; Alignment
;;------------------------------------------------------------------------------------- ;;-------------------------------------------------------------------------------------

Loading…
Cancel
Save