diff --git a/.gitignore b/.gitignore index 65929f6..b2a7079 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ !index.html !scripts/*.sh !.gitignore +!README.org !lisp !lisp/ !lisp/* diff --git a/README.org b/README.org new file mode 100644 index 0000000..3ab25b2 --- /dev/null +++ b/README.org @@ -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 diff --git a/lisp/08-custom-packages.el b/lisp/08-custom-packages.el index 89a2073..12b13ed 100644 --- a/lisp/08-custom-packages.el +++ b/lisp/08-custom-packages.el @@ -510,6 +510,12 @@ (verbatim . "%s")) ) :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)