]> code.delx.au - dotemacs/commitdiff
Improved terminal display
authorJames Bunton <jamesbunton@delx.net.au>
Fri, 26 Oct 2018 05:55:02 +0000 (16:55 +1100)
committerJames Bunton <jamesbunton@delx.net.au>
Fri, 26 Oct 2018 05:55:02 +0000 (16:55 +1100)
lisp/my-gui.el
lisp/my-minor-modes.el

index 9c3dce1cd8db56e68de758b139261f23fc37ee79..de646121657feccde86150cad713b79005653b22 100644 (file)
@@ -1,5 +1,9 @@
 ;;; -*- lexical-binding: t -*-
 
+(menu-bar-mode -1)
+(tool-bar-mode -1)
+(scroll-bar-mode -1)
+
 (require 'pastels-on-dark-theme)
 (setq frame-background-mode 'dark)
 
@@ -20,9 +24,8 @@
         "#e9ebeb"))
 (setq ansi-color-map (ansi-color-make-color-map))
 
-(menu-bar-mode -1)
-(tool-bar-mode -1)
-(scroll-bar-mode -1)
+(add-to-list 'term-file-aliases
+                 '("screen.xterm-256color" . "screen-256color"))
 
 (setq scroll-conservatively 1)
 (setq scroll-margin 1)
index 0c994d512ce92fbd6520d44b12df3ac6d61bfa25..7da6b3f98e59eb44bfa26496459444dee150d692 100644 (file)
@@ -43,6 +43,9 @@
 (add-hook 'prog-mode-hook 'highlight-indent-guides-mode)
 (setq highlight-indent-guides-method 'character)
 (setq highlight-indent-guides-responsive 'top)
+(setq highlight-indent-guides-auto-enabled nil)
+(set-face-foreground 'highlight-indent-guides-character-face "#333333")
+(set-face-foreground 'highlight-indent-guides-top-character-face "#726464")
 
 (require 'highlight-symbol)
 (add-hook 'prog-mode-hook #'highlight-symbol-mode)