Added zshrc

Signed-off-by: Marcin Woźniak <y0rune@aol.com>
This commit is contained in:
2021-04-01 12:37:33 +02:00
parent 12e5f77d04
commit c454e0d00a
7 changed files with 57 additions and 25 deletions

View File

@ -5,7 +5,9 @@
;; If there is more than one, they won't work right.
'(custom-safe-themes
'("2dff5f0b44a9e6c8644b2159414af72261e38686072e063aa66ee98a2faecf0e" default))
'(markdown-command "/usr/bin/pandoc"))
'(markdown-command "/usr/bin/pandoc")
'(package-selected-packages
'(company-jedi 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 jedi-core htmlize helm flymake-yaml flymake-shellcheck flymake-shell flymake-ruby flycheck-haskell flycheck-bashate dracula-theme dockerfile-mode dired-sidebar company-tabnine 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

@ -425,6 +425,17 @@
:ensure t
:config (treemacs-set-scope-type 'Perspectives))
;; Python
(use-package company-jedi
:ensure t
:config
)
(defun my/python-mode-hook ()
(add-to-list 'company-backends 'company-jedi))
(add-hook 'python-mode-hook 'my/python-mode-hook)
;;; --- Look & Feel ---
;; Helm

View File

@ -1,13 +1,13 @@
;; ----- smex-history -----
(
goto-line
overwrite-mode
shell
table-insert
table-insert-row
load-theme
disable-theme
shell
package-refresh-contents
treemacs
inf-ruby-console-auto
compile
)
;; ----- smex-data -----
@ -31,12 +31,17 @@
(ruby-indent-line . 1)
(ruby-mode-menu . 1)
(inf-ruby-console-auto . 8)
(shell . 4)
(shell . 6)
(package-install-selected-packages . 1)
(package-install . 1)
(compile . 2)
(lsp-mode . 2)
(load-theme . 14)
(load-theme . 15)
(overwrite-mode . 1)
(goto-line . 2)
(package-refresh-contents . 1)
(epc:pop-to-last-server-process-buffer . 3)
(disable-theme . 1)
(table-insert . 3)
(table-insert-row . 1)
)