Some small updates

This commit is contained in:
Jeremy Dormitzer 2019-06-06 14:46:33 -04:00
parent db4e83a1cf
commit 457e06605a

View File

@ -746,7 +746,7 @@ Always show inline images:
(setq org-agenda-custom-commands
'(("T" "Today's list"
((agenda)
(tags "today")))))
(tags-todo "today")))))
#+END_SRC
** Keybindings
@ -1009,12 +1009,13 @@ Some aliases:
"mvn com.github.ekryd.sortpom:sortpom-maven-plugin:sort -Dsort.keepBlankLines -Dsort.sortDependencies=scope,groupId,artifactId -Dsort.createBackupFile=false $*")))
#+END_SRC
* JavaScript
* JSON
#+BEGIN_SRC emacs-lisp
(use-package json-mode
:mode (("\\.json\\'" . json-mode)))
#+END_SRC
* JavaScript
Some formatting stuff:
#+BEGIN_SRC emacs-lisp
(setq js-indent-level 4)
@ -1357,6 +1358,7 @@ Magit is objectively the best Git interface.
(jdormit/define-prefix "g" "git")
(leader-def-key "gs" #'magit-status)
(leader-def-key "gb" #'magit-blame)
(leader-def-key "gf" #'magit-find-file)
#+END_SRC
Use ido-mode for completion within Magit: