Browse Source

README (with auto-gen package list)

master
Levi Olson 5 years ago
parent
commit
aa0bab172a
3 changed files with 98 additions and 0 deletions
  1. +1
    -0
      .gitignore
  2. +91
    -0
      README.org
  3. +6
    -0
      lisp/08-custom-packages.el

+ 1
- 0
.gitignore View File

@ -3,6 +3,7 @@
!index.html
!scripts/*.sh
!.gitignore
!README.org
!lisp
!lisp/
!lisp/*

+ 91
- 0
README.org View File

@ -0,0 +1,91 @@
#+TITLE: Emacs Config
#+AUTHOR: Levi Olson
#+STARTUP: showall
#+OPTIONS: ^:{} toc:nil num:nil tex:t
* Emacs Config
My personal init.el focused on quick startup with minimal, but functional config.
Currently configured with these packages (list generated automatically):
#+begin_src emacs-lisp :results output raw :exports results
(setq leo/package-list package-activated-list)
(while leo/package-list
(princ (concat " - " (symbol-name (car leo/package-list)) "\n"))
(setq leo/package-list (cdr leo/package-list)))
#+end_src
#+RESULTS:
- ace-jump-mode
- amx
- angular-mode
- angular-snippets
- beacon
- browse-at-remote
- cargo
- company-restclient
- company
- counsel
- dashboard
- delight
- diminish
- dmenu
- elfeed
- emojify
- engine-mode
- expand-region
- exwm
- exwm-edit
- f
- fic-mode
- flycheck
- gitconfig-mode
- gitignore-mode
- howdoyou
- ht
- htmlize
- json-mode
- json-reformat
- json-snatcher
- know-your-http-well
- linum-relative
- magit
- git-commit
- markdown-mode
- multiple-cursors
- nadvice
- org-bullets
- org-link-minor-mode
- org
- org-plus-contrib
- ox-twbs
- page-break-lines
- projectile
- pkg-info
- epl
- promise
- rainbow-delimiters
- rainbow-mode
- request
- restclient
- rust-mode
- s
- scss-mode
- smex
- sudo-edit
- swiper
- ivy
- transient
- dash
- use-package
- bind-key
- web-mode
- which-key
- with-editor
- async
- xelb
- yasnippet
- zerodark-theme
- all-the-icons
- memoize

+ 6
- 0
lisp/08-custom-packages.el View File

@ -510,6 +510,12 @@
(verbatim . "<code class=\"verbatim\">%s</code>"))
)
:config
(defun org-src-disable-flycheck-doc ()
"Disable flycheck comment doc string checking when (C-c ') ing a file."
(interactive)
(setq flycheck-disabled-checkers '(emacs-lisp-checkdoc)))
(add-to-list 'org-src-mode-hook 'org-src-disable-flycheck-doc)
(when (version<= "9.2" (org-version))
(require 'org-tempo))
(org-babel-do-load-languages 'org-babel-load-languages '((js . t)

Loading…
Cancel
Save