This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --skip-spring | |
| --no-helper | |
| --no-assets | |
| --no-controller-specs | |
| --no-view-specs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #+BEGIN_SRC emacs-lisp | |
| ;; active Babel languages | |
| (org-babel-do-load-languages | |
| 'org-babel-load-languages | |
| '((gnuplot . t))) | |
| ;; add additional languages with '((language . t))) | |
| #+END_SRC | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| helm-ag-edit | |
| avy-goto-char-timer | |
| view-lossage | |
| SPC v v - expand selection region | |
| dump jump |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias whitespace='find . -not \( -name .svn -prune -o -name .git -prune \) -type f -print0 | xargs -0 file -In | grep -v binary | cut -d ":" -f1 | xargs -0 sed -i '' -E "s/[[:space:]]*$//"' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd ~/.emacs.d | |
| git checkout -b fix-org-projectile | |
| git cherry-pick 6063466 | |
| rm CHANGELOG.develop | |
| git add -A . | |
| git cherry-pick --continue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| setw -g mode-keys vi | |
| #bind h select-pane -L | |
| #bind j select-pane -D | |
| #bind k select-pane -U | |
| #bind l select-pane -R | |
| bind-key -r C-h select-window -t :- | |
| bind-key -r C-l select-window -t :+ | |
| # act like GNU screen | |
| unbind C-b |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd ~/.emacs.d/elpa/ | |
| cd develop | |
| find org*/*.elc -print0 | xargs -0 rm | |
| #spacemacs/recompile-elpa |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (require 'org-id) | |
| (save-excursion | |
| (goto-char (point-max)) | |
| (while (outline-previous-heading) | |
| (org-id-get-create))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://www.youtube.com/feeds/videos.xml?channel_id=CHANNELID |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diskutil list | |
| diskutil partitionDisk /dev/disk1 1 "Free Space" "unused" "100%" | |
| sudo dd bs=1m of=/dev/rdisk1 if=manjaro-kde-17.0-stable-x86_64.iso |