Compare commits

..

No commits in common. "19b5305e231c27e33e31960bafb258be5832626d" and "dbe5acc2c3bcf30354b17d72f52bcfffb35fa35c" have entirely different histories.

2 changed files with 6 additions and 4 deletions

View file

@ -1,6 +1,8 @@
(use-package ivy-pass (use-package ivy-pass
:ensure t :ensure t
:init :init
;; from https://github.com/ecraven/ivy-pass/blob/master/ivy-pass.el
(setq password-store-password-length 32) (setq password-store-password-length 32)
:bind :config
("C-x p" . ivy-pass)) ;; configure ivy-pass key binding
(global-set-key [?\C-x ?p] 'ivy-pass))

View file

@ -3,5 +3,5 @@
(use-package flycheck-mypy (use-package flycheck-mypy
:ensure t :ensure t
:hook :config
(python-mode . flycheck-mode)) (add-hook 'python-mode-hook 'flycheck-mode))