Skip to content

Commit

Permalink
Fix: Update list of packages to be auto installed
Browse files Browse the repository at this point in the history
  • Loading branch information
kaushalmodi committed Apr 13, 2015
1 parent 7b57cb9 commit 5d0d05c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion custom_25_0.el
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
'(outline-minor-mode-prefix "\243")
'(package-selected-packages
(quote
(aggressive-indent zop-to-char yasnippet yaml-mode yafolding xkcd wrap-region wgrep-ag web-mode volatile-highlights visual-regexp use-package unfill undo-tree transpose-frame tiny sx swiper sunshine stripe-buffer smex smart-mode-line smart-compile region-bindings-mode rectangle-utils rainbow-mode rainbow-delimiters python-mode poporg pdf-tools paradox page-break-lines ox-reveal outshine org-tree-slide number nlinum neotree navi-mode names mwe-log-commands multiple-cursors multi-term marshal manage-minor-mode magit log4e loccur linum-relative leuven-theme key-chord iy-go-to-char isend-mode iregister interleave indent-guide ido-vertical-mode ido-ubiquitous ibuffer-projectile hydra hungry-delete htmlize hl-line+ hl-anything help-fns+ helm-swoop header2 hardcore-mode guide-key gplusify git-link gist ggtags fuzzy fringe-helper fold-this flx-ido fill-column-indicator f expand-region eww-lnum etags-table etags-select epresent elisp-slime-nav elfeed el-get eimp drag-stuff discover-my-major dired-single dired+ diff-hl darktooth-theme ctags-update csv-nav buffer-move bookmark+ benchmark-init avy-jump auto-highlight-symbol auto-complete anzu ag ace-window ace-jump-mode)))
(twilight-anti-bright-theme twilight-bright-theme planet-theme ample-theme rpn-calc markdown-mode kurecolor keyfreq helm-gtags wgrep adaptive-wrap aggressive-indent zop-to-char yasnippet yaml-mode yafolding xkcd wrap-region wgrep-ag web-mode volatile-highlights visual-regexp use-package unfill undo-tree transpose-frame tiny sx swiper sunshine stripe-buffer smex smart-mode-line smart-compile region-bindings-mode rectangle-utils rainbow-mode rainbow-delimiters python-mode poporg pdf-tools paradox page-break-lines ox-reveal outshine org-tree-slide number nlinum neotree navi-mode names mwe-log-commands multiple-cursors multi-term marshal manage-minor-mode magit log4e loccur linum-relative leuven-theme key-chord iy-go-to-char isend-mode iregister interleave indent-guide ido-vertical-mode ido-ubiquitous ibuffer-projectile hydra hungry-delete htmlize hl-line+ hl-anything help-fns+ helm-swoop header2 hardcore-mode guide-key gplusify git-link gist ggtags fuzzy fringe-helper fold-this flx-ido fill-column-indicator f expand-region eww-lnum etags-table etags-select epresent elisp-slime-nav elfeed el-get eimp drag-stuff discover-my-major dired-single dired+ diff-hl darktooth-theme ctags-update csv-nav buffer-move bookmark+ benchmark-init avy-jump auto-highlight-symbol auto-complete anzu ag ace-window ace-jump-mode)))
'(paradox-automatically-star t)
'(require-final-newline nil nil nil "Do not auto-add a final newline (if one is not present) when saving/visiting a file")
'(safe-local-variable-values
Expand Down
8 changes: 7 additions & 1 deletion init.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;; Time-stamp: <2015-04-13 09:51:11 kmodi>
;; Time-stamp: <2015-04-13 16:39:19 kmodi>
;; Author: Kaushal Modi

;; Record the start time
Expand Down Expand Up @@ -67,6 +67,7 @@
ido-vertical-mode flx-ido ido-ubiquitous
indent-guide
iregister ; Interactive access to registers
isend-mode ; used in setup-perl.el
iy-go-to-char ; Go to next char which is similar to "f" and "t" in vim
key-chord ; map pairs of simultaneously pressed keys to commands
keyfreq ; find which commands you use the most
Expand Down Expand Up @@ -99,6 +100,7 @@
smart-mode-line popup rich-minority
smex ; smart M-x
stripe-buffer
swiper
sx
tiny
undo-tree ; supercool undo visualization
Expand Down Expand Up @@ -280,6 +282,10 @@

(global-modi-mode t)

(when (and (bound-and-true-p emacs-initialized)
(featurep 'setup-visual))
(funcall default-theme-fn)) ; defined in setup-visual.el

(setq emacs-initialized t)

;; Write out a message indicating how long it took to process the init script
Expand Down
3 changes: 2 additions & 1 deletion setup-files/setup-pdf.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;; Time-stamp: <2015-04-04 00:48:33 kmodi>
;; Time-stamp: <2015-04-13 16:35:45 kmodi>

;; PDF

Expand All @@ -7,6 +7,7 @@

(use-package pdf-tools
:if (not (bound-and-true-p disable-pkg-pdf-tools))
:ensure t
:preface
(progn
(defvar pdf-tools-github-version-name "pdf-tools-0.60"))
Expand Down

0 comments on commit 5d0d05c

Please sign in to comment.