Various changes: theme, ctags, and Matlab faces
This commit is contained in:
parent
cf2b118b32
commit
784864c0c5
1 changed files with 19 additions and 17 deletions
36
init.el
36
init.el
|
@ -107,12 +107,17 @@
|
||||||
(setq uniquify-ignore-buffers-re "^\\*"))
|
(setq uniquify-ignore-buffers-re "^\\*"))
|
||||||
|
|
||||||
;; Theme
|
;; Theme
|
||||||
(use-package base16-theme
|
;; (use-package base16-theme
|
||||||
|
;; :ensure t
|
||||||
|
;; :init
|
||||||
|
;; (setq base16-theme-256-color-source 'base16-shell)
|
||||||
|
;; :config
|
||||||
|
;; (load-theme 'base16-default-dark t))
|
||||||
|
|
||||||
|
(use-package color-theme-sanityinc-tomorrow
|
||||||
:ensure t
|
:ensure t
|
||||||
:init
|
|
||||||
(setq base16-theme-256-color-source 'base16-shell)
|
|
||||||
:config
|
:config
|
||||||
(load-theme 'base16-default-dark t))
|
(load-theme 'sanityinc-tomorrow-night))
|
||||||
|
|
||||||
(use-package exec-path-from-shell
|
(use-package exec-path-from-shell
|
||||||
:ensure t
|
:ensure t
|
||||||
|
@ -204,7 +209,7 @@
|
||||||
(setq projectile-completion-system 'ivy)
|
(setq projectile-completion-system 'ivy)
|
||||||
:config
|
:config
|
||||||
(setq projectile-enable-caching t)
|
(setq projectile-enable-caching t)
|
||||||
(setq projectile-tags-command "ctags-exuberant -Re")
|
(setq projectile-tags-command "ctags-universal -Re")
|
||||||
(define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)
|
(define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)
|
||||||
(projectile-mode +1))
|
(projectile-mode +1))
|
||||||
|
|
||||||
|
@ -344,18 +349,15 @@
|
||||||
(setq matlab-shell-command-switches '("-nodesktop"))
|
(setq matlab-shell-command-switches '("-nodesktop"))
|
||||||
(setq mlint-program "/usr/local/bin/mlint")
|
(setq mlint-program "/usr/local/bin/mlint")
|
||||||
(setq-default matlab-show-mlint-warnings t)
|
(setq-default matlab-show-mlint-warnings t)
|
||||||
(set-face-attribute 'linemark-stop-face nil
|
:custom-face
|
||||||
:background 'unspecified
|
(linemark-stop-face ((t (:background 'unspecified)
|
||||||
:underline '(:color "red3" :style wave))
|
(:underline '(:color "red3" :style wave)))))
|
||||||
(set-face-attribute 'linemark-caution-face nil
|
(linemark-caution-face ((t (:background 'unspecified)
|
||||||
:background 'unspecified
|
(:underline '(:color "yellow4" :style wave)))))
|
||||||
:underline '(:color "yellow4" :style wave))
|
(linemark-go-face ((t (:background 'unspecified)
|
||||||
(set-face-attribute 'linemark-go-face nil
|
(:underline '(:color "green4" :style wave)))))
|
||||||
:background 'unspecified
|
(linemark-funny-face ((t (:background 'unspecified)
|
||||||
:underline '(:color "green4" :style wave))
|
(:underline '(:color "blue3" :style wave))))))
|
||||||
(set-face-attribute 'linemark-funny-face nil
|
|
||||||
:background 'unspecified
|
|
||||||
:underline '(:color "blue3" :style wave)))
|
|
||||||
|
|
||||||
(use-package dyalog-mode
|
(use-package dyalog-mode
|
||||||
:ensure t
|
:ensure t
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue