From 583ba27c90168effeed747a170245792e28a1f20 Mon Sep 17 00:00:00 2001 From: John Doty Date: Sun, 15 Apr 2012 20:11:23 -0700 Subject: [PATCH 1/2] Make emacs usable through putty --- .emacs.d/init.el | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index ce3942a..981816c 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -128,9 +128,11 @@ ;; COLORZ! ;; -(require 'color-theme) -(require 'color-theme-solarized) -(color-theme-solarized-light) +(if (display-graphic-p) + (progn + (require 'color-theme) + (require 'color-theme-solarized) + (color-theme-solarized-dark))) ;; Modeline format: (display-time-mode -1) From 0ed0ebabe0004bb40457cc90e03f49c77dcee8e0 Mon Sep 17 00:00:00 2001 From: John Doty Date: Sun, 15 Apr 2012 21:09:39 -0700 Subject: [PATCH 2/2] .screenrc --- .screenrc | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .screenrc diff --git a/.screenrc b/.screenrc new file mode 100644 index 0000000..029edf6 --- /dev/null +++ b/.screenrc @@ -0,0 +1,3 @@ +hardstatus on +hardstatus alwayssetlastline "%{=b}%{G} Screen(s): %{b}%w" +defscrollback 5000