js and theming tweaks.
This commit is contained in:
parent
1c01f9f1dd
commit
af17590330
39
init.el
39
init.el
@ -104,7 +104,7 @@
|
|||||||
exec-path-from-shell slime yaml-mode sgml-mode
|
exec-path-from-shell slime yaml-mode sgml-mode
|
||||||
dired+ ctags ctags-update helm-gtags hackernews gitconfig-mode
|
dired+ ctags ctags-update helm-gtags hackernews gitconfig-mode
|
||||||
aggressive-indent imenu+ weechat evil helm-ag xclip neotree
|
aggressive-indent imenu+ weechat evil helm-ag xclip neotree
|
||||||
magit-gh-pulls diminish gist org spotify ghc))
|
magit-gh-pulls diminish gist spotify ghc))
|
||||||
|
|
||||||
(defvar packages-appearance
|
(defvar packages-appearance
|
||||||
'(monokai-theme solarized-theme zenburn-theme base16-theme molokai-theme
|
'(monokai-theme solarized-theme zenburn-theme base16-theme molokai-theme
|
||||||
@ -252,6 +252,11 @@
|
|||||||
:commands string-inflection-toggle
|
:commands string-inflection-toggle
|
||||||
:bind ("C-c l" . string-inflection-toggle))
|
:bind ("C-c l" . string-inflection-toggle))
|
||||||
|
|
||||||
|
(use-package org
|
||||||
|
:ensure t
|
||||||
|
:init
|
||||||
|
(add-hook 'org-mode-hook (lambda () (linum-mode 0))))
|
||||||
|
|
||||||
;; =============================================================================
|
;; =============================================================================
|
||||||
;; Programming Mode Hooks
|
;; Programming Mode Hooks
|
||||||
;; =============================================================================
|
;; =============================================================================
|
||||||
@ -433,9 +438,6 @@
|
|||||||
|
|
||||||
(use-package js2-mode
|
(use-package js2-mode
|
||||||
:ensure t
|
:ensure t
|
||||||
:mode "\\.js\\'"
|
|
||||||
:config
|
|
||||||
(progn (setq js-indent-level 2))
|
|
||||||
:bind
|
:bind
|
||||||
(("C-c b" . web-beautify-js)
|
(("C-c b" . web-beautify-js)
|
||||||
("C-c b" . web-beautify-js))
|
("C-c b" . web-beautify-js))
|
||||||
@ -444,8 +446,10 @@
|
|||||||
(use-package skewer-mode
|
(use-package skewer-mode
|
||||||
:ensure t
|
:ensure t
|
||||||
:commands skewer-mode)
|
:commands skewer-mode)
|
||||||
|
(add-hook 'js-mode-hook 'js2-minor-mode)
|
||||||
(add-hook 'js2-mode-hook (lambda () (tern-mode t)))
|
(add-hook 'js2-mode-hook (lambda () (tern-mode t)))
|
||||||
(add-hook 'js2-mode-hook 'skewer-mode)
|
(add-hook 'js2-mode-hook 'skewer-mode)
|
||||||
|
(add-hook 'js2-mode-hook (lambda () (setq js-indent-level 1)))
|
||||||
(use-package tern
|
(use-package tern
|
||||||
:ensure t
|
:ensure t
|
||||||
:config
|
:config
|
||||||
@ -455,8 +459,12 @@
|
|||||||
(use-package tern-auto-complete :ensure t
|
(use-package tern-auto-complete :ensure t
|
||||||
:commands tern-ac-setup)))))
|
:commands tern-ac-setup)))))
|
||||||
|
|
||||||
(defvar packages-js '(js2-mode js3-mode web-beautify tern tern-auto-complete
|
(use-package json-mode
|
||||||
slime-js skewer-mode skewer-reload-stylesheets))
|
:ensure t
|
||||||
|
:init
|
||||||
|
(add-hook 'json-mode-hook
|
||||||
|
(lambda ()
|
||||||
|
(setq js-indent-level 2))))
|
||||||
|
|
||||||
(add-hook 'css-mode-hook #'skewer-css-mode)
|
(add-hook 'css-mode-hook #'skewer-css-mode)
|
||||||
(add-hook 'html-mode-hook #'skewer-html-mode)
|
(add-hook 'html-mode-hook #'skewer-html-mode)
|
||||||
@ -670,7 +678,7 @@ buffer is not visiting a file."
|
|||||||
(if t ;; (display-graphic-p) why doesn't this work at frame startup?
|
(if t ;; (display-graphic-p) why doesn't this work at frame startup?
|
||||||
(let ((hour
|
(let ((hour
|
||||||
(string-to-number (format-time-string "%H"))))
|
(string-to-number (format-time-string "%H"))))
|
||||||
(if (or (< hour 8) (> hour 17))
|
(if (or (< hour 8) (> hour 16))
|
||||||
(random-choice dark-themes) (random-choice light-themes)))
|
(random-choice dark-themes) (random-choice light-themes)))
|
||||||
(random-choice terminal-themes)))
|
(random-choice terminal-themes)))
|
||||||
|
|
||||||
@ -683,18 +691,23 @@ buffer is not visiting a file."
|
|||||||
(if (eq appropriate-theme current-theme)
|
(if (eq appropriate-theme current-theme)
|
||||||
nil
|
nil
|
||||||
(progn
|
(progn
|
||||||
(deactivate-all-themes)
|
(disable-all-themes)
|
||||||
(load-theme appropriate-theme t)
|
(load-theme appropriate-theme t)
|
||||||
(setq current-theme appropriate-theme)))))
|
(setq current-theme appropriate-theme)))))
|
||||||
|
|
||||||
(defun deactivate-all-themes ()
|
(defun disable-all-themes ()
|
||||||
(interactive)
|
(interactive)
|
||||||
(mapcar 'disable-theme custom-enabled-themes))
|
(mapcar 'disable-theme custom-enabled-themes))
|
||||||
|
|
||||||
(defun disable-and-load-theme ()
|
(defun disable-and-load-theme (theme &optional no-confirm no-enable)
|
||||||
(interactive)
|
(interactive
|
||||||
(deactivate-all-themes)
|
(list
|
||||||
(call-interactively 'load-theme))
|
(intern (completing-read "Load custom theme: "
|
||||||
|
(mapcar 'symbol-name
|
||||||
|
(custom-available-themes))))
|
||||||
|
nil nil))
|
||||||
|
(disable-all-themes)
|
||||||
|
(load-theme theme no-confirm no-enable))
|
||||||
|
|
||||||
(defun set-my-font-for-frame (frame)
|
(defun set-my-font-for-frame (frame)
|
||||||
(condition-case exp
|
(condition-case exp
|
||||||
|
Loading…
Reference in New Issue
Block a user