Changed the theme to dracula in emacs
This commit is contained in:
parent
671093d80c
commit
425d3bd7a1
@ -198,10 +198,15 @@
|
|||||||
(add-to-list 'default-frame-alist `(font . ,(rc/get-default-font)))
|
(add-to-list 'default-frame-alist `(font . ,(rc/get-default-font)))
|
||||||
|
|
||||||
;; Theme
|
;; Theme
|
||||||
(use-package gruvbox-theme
|
;;(use-package gruvbox-theme
|
||||||
|
;; :ensure t
|
||||||
|
;; :config
|
||||||
|
;; (load-theme 'gruvbox-dark-hard t))
|
||||||
|
|
||||||
|
(use-package dracula-theme
|
||||||
:ensure t
|
:ensure t
|
||||||
:config
|
:config
|
||||||
(load-theme 'gruvbox-dark-hard t))
|
(load-theme 'dracula t))
|
||||||
|
|
||||||
;; Sitebar dirred
|
;; Sitebar dirred
|
||||||
(use-package dired-sidebar
|
(use-package dired-sidebar
|
||||||
@ -484,6 +489,11 @@
|
|||||||
|
|
||||||
(setq-default ebuild-mode-update-copyright nil)
|
(setq-default ebuild-mode-update-copyright nil)
|
||||||
|
|
||||||
|
(setq jedi:environment-root "jedi") ; or any other name you like
|
||||||
|
(setq jedi:environment-virtualenv
|
||||||
|
(append python-environment-virtualenv
|
||||||
|
'("--python" "/usr/local/bin/python3")))
|
||||||
|
|
||||||
(defun infer-indentation-style () (interactive)
|
(defun infer-indentation-style () (interactive)
|
||||||
(let ((space-count (how-many "^ " (point-min) (point-max)))
|
(let ((space-count (how-many "^ " (point-min) (point-max)))
|
||||||
(tab-count (how-many "^\t" (point-min) (point-max))))
|
(tab-count (how-many "^\t" (point-min) (point-max))))
|
||||||
|
Loading…
Reference in New Issue
Block a user