Browse Source

Magit and flymake additions

Josh Bicking 5 years ago
parent
commit
a9a31db298
1 changed files with 12 additions and 9 deletions
  1. 12 9
      emacs/.emacs.d/packages/packages.el

+ 12 - 9
emacs/.emacs.d/packages/packages.el

@@ -493,6 +493,7 @@
   (setq org-latex-minted-options
     '("breaklines"))
 
+  (add-hook 'org-mode-hook 'visual-line-mode)
   (defun org-variable-toggle-latex-fragment ()
     "Toggle LaTeX fragment, taking into account the current zoom size of the buffer."
     (interactive)
@@ -634,25 +635,25 @@
   "SPC d" "Diff buffer w/ file"))
 
 ;; OS specific
-(use-package magit
-  :commands magit-status
+(use-package magit-todos
   :if (not (eq system-type 'windows-nt))
   :ensure t
-  :defer t
-  :diminish magit-auto-revert-mode
-  :config
-  (evil-magit-init)
-  (magit-todos-mode))
+  :commands magit-todos-mode)
 
 (use-package evil-magit
   :if (not (eq system-type 'windows-nt))
   :ensure t
   :commands evil-magit-init)
 
-(use-package magit-todos
+(use-package magit
+  :commands magit-status
   :if (not (eq system-type 'windows-nt))
   :ensure t
-  :commands magit-todos-mode)
+  :defer t
+  :diminish magit-auto-revert-mode
+  :config
+  (evil-magit-init)
+  (magit-todos-mode))
 
 (use-package multi-term
   :if (not (eq system-type 'windows-nt))
@@ -952,6 +953,7 @@
 	jedi
 	company-jedi
 	py-autopep8
+	flymake-php
         ))
 
 (defvar packages-installed-this-session nil)
@@ -983,6 +985,7 @@
 (use-package flymake
   :config
   (use-package flymake-php
+    :ensure t
     :init
     (add-hook 'php-mode-hook 'flymake-php-load)))