init.el
changeset 28 8f4bd2f2cc06
parent 26 bd86fe64dfc8
child 29 b52bb6669eed
equal deleted inserted replaced
27:7a247a2fccdd 28:8f4bd2f2cc06
    73     (progn
    73     (progn
    74       (tool-bar-mode -1)    ; remove tool bar
    74       (tool-bar-mode -1)    ; remove tool bar
    75       (scroll-bar-mode -1)  ; remove scroll bar
    75       (scroll-bar-mode -1)  ; remove scroll bar
    76       (visual-line-mode t)  ; word wrap break on whitespace
    76       (visual-line-mode t)  ; word wrap break on whitespace
    77       (global-hl-line-mode t)
    77       (global-hl-line-mode t)
       
    78 
       
    79       ;; twilight theme
       
    80       (require 'color-theme)
       
    81       (load "color-theme-twilight")
       
    82       (color-theme-twilight)
    78       ))
    83       ))
    79 
    84 
    80 ;; terminal
    85 ;; terminal
    81 (global-set-key (kbd "C-c s") '(lambda () (interactive) (ansi-term "bash" "shell"))) ; start term
    86 (global-set-key (kbd "C-c s") '(lambda () (interactive) (ansi-term "bash" "shell"))) ; start term
    82 
    87