Changed theme in vim and emacs

Signed-off-by: Marcin Woźniak <y0rune@aol.com>
This commit is contained in:
2021-04-05 23:50:32 +02:00
parent fcc216725c
commit e9c366fd6d
14 changed files with 786 additions and 13 deletions

View File

@ -5,7 +5,7 @@
;; If there is more than one, they won't work right.
'(markdown-command "/usr/bin/pandoc")
'(package-selected-packages
'(zenburn-theme yaml-mode use-package treemacs-projectile treemacs-persp treemacs-magit treemacs-icons-dired treemacs-evil switch-window smex robe ox-reveal multiple-cursors move-text lsp-java htmlize helm flymake-yaml flymake-shellcheck flymake-shell flymake-ruby flycheck-haskell flycheck-bashate dracula-theme dockerfile-mode dired-sidebar company-tabnine company-jedi company-c-headers company-ansible auto-complete-clang apache-mode ansible-doc ansible)))
'(python-black zenburn-theme yaml-mode use-package treemacs-projectile treemacs-persp treemacs-magit treemacs-icons-dired treemacs-evil switch-window smex robe prettier ox-reveal multiple-cursors move-text lsp-java htmlize helm flymake-yaml flymake-shellcheck flymake-shell flymake-ruby flycheck-haskell flycheck-bashate dracula-theme dockerfile-mode dired-sidebar company-tabnine company-jedi company-c-headers company-ansible auto-complete-clang apache-mode ansible-doc ansible)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.

View File

@ -182,8 +182,6 @@
:config
(load-theme 'zenburn t))
;; Sitebar dirred
(use-package dired-sidebar
:ensure t
@ -472,6 +470,12 @@
python-indent-offset 4))))
(add-hook 'python-mode-hook 'infer-indentation-style)
;; python-black
(use-package python-black
:demand t
:after python)
;;; --- Look & Feel ---
;; Helm

View File

@ -1,13 +1,13 @@
;; ----- smex-history -----
(
display-fill-column-indicator-mode
run-python
whitespace-mode
shell
python-black
message-tab
python-black-on-save-mode
package-install
treemacs
load-theme
prettier-prettify
prettier-prettify-region
prettier-mode
)
;; ----- smex-data -----
@ -31,12 +31,12 @@
(ruby-indent-line . 1)
(ruby-mode-menu . 1)
(inf-ruby-console-auto . 8)
(shell . 7)
(shell . 8)
(package-install-selected-packages . 1)
(package-install . 2)
(package-install . 3)
(compile . 2)
(lsp-mode . 2)
(load-theme . 16)
(load-theme . 18)
(overwrite-mode . 1)
(goto-line . 2)
(package-refresh-contents . 1)
@ -52,6 +52,13 @@
(lsp-describe-session . 1)
(whitespace-mode . 2)
(python-shell-switch-to-shell . 1)
(run-python . 1)
(run-python . 2)
(display-fill-column-indicator-mode . 3)
(prettier-restart . 1)
(prettier-prettify . 8)
(prettier-mode . 2)
(prettier-prettify-region . 2)
(python-black . 9)
(python-black-on-save-mode . 1)
(message-tab . 1)
)