("4e753673a37c71b07e3026be75dc6af3efbac5ce335f3707b7d6a110ecb636a3" "b571f92c9bfaf4a28cb64ae4b4cdbda95241cd62cf07d942be44dc8f46c491f4" default)))
'(package-selected-packages
(quote
- (projectile helm-projectile zenburn-theme helm helm-config use-package flycheck company-jedi company org evil))))
+ (jinja2 jinja2-mode highlight-indent-guides projectile helm-projectile zenburn-theme helm helm-config use-package flycheck company-jedi company org evil))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
(setq projectile-completion-system 'helm)
(helm-projectile-on))
+(use-package highlight-indent-guides
+ :ensure t
+ :config
+ (add-hook 'prog-mode-hook 'highlight-indent-guides-mode)
+ (setq highlight-indent-guides-method 'character)
+ (setq highlight-indend-guides-character ?\|)
+ (set-face-foreground 'highlight-indent-guides-character-face "darkgray"))
+
+(use-package jinja2-mode
+ :ensure t)
+
+
+
(add-hook 'after-init-hook 'global-company-mode)
+(add-hook 'prog-mode-hook 'electric-pair-mode)
+
(eval-after-load 'company
'(add-to-list 'company-backends 'company-jedi))