-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme-settings.el
60 lines (49 loc) · 1.56 KB
/
theme-settings.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
;; ;; sanityinc tomorrow theme
;; (use-package color-theme-sanityinc-tomorrow
;; :config
;; (load-theme 'sanityinc-tomorrow-night t)
;; (set-face-attribute 'default nil
;; ;;:family "Source Code Pro"
;; :family "Roboto Light"
;; :height 140
;; :weight 'normal
;; :width 'normal)
;; ;; set highlight color
;; (set-face-attribute 'region nil :background "#444444" :foreground "#cccccc"))
(let ((default-directory "~/.emacs.d/settings/resources"))
(normal-top-level-add-subdirs-to-load-path))
;; Nano emacs
;; -----------------
(require 'nano-theme-dark)
(nano-theme-set-dark)
;; (require 'nano-layout)
(require 'nano-faces)
(nano-faces)
(require 'nano-theme)
(nano-theme)
(require 'nano-modeline)
;; End Nano emacs -----------
;; delay fontification to speed things up...
;; (setq jit-lock-defer-time 0.1)
(setq jit-lock-defer-time 0)
(setq font-lock-support-mode 'jit-lock-mode)
(setq jit-lock-stealth-time 16
jit-lock-defer-contextually t
;;jit-lock-stealth-nice 0.5)
jit-lock-stealth-nice 0)
(setq font-lock-maximum-decoration 5)
(setq-default font-lock-multiline t)
(if (not (eq system-type 'windows-nt))
(set-frame-parameter nil 'undecorated t))
; don't show the startup screen
(setq inhibit-startup-screen t)
; don't show the tool bar
(require 'tool-bar)
(tool-bar-mode 0)
; don't show the menu bar
(menu-bar-mode 0)
; disable scroll bar
(toggle-scroll-bar 0)
; don't blink the cursor
(blink-cursor-mode 0)
(provide 'theme-settings)