dotfiles

My dotfiles.
Log | Files | Refs | LICENSE

commit a6d7ebc1ed96ca8cad4aa6808e92a807085300de
parent 9b44438d875c3e4f46177013f9a995a0cc6f1a92
Author: Ryan Jeffrey <ryan@ryanmj.xyz>
Date:   Tue, 29 Sep 2020 19:09:13 -0700

More .config

Diffstat:
A.config/systemd/user/emacs.service | 13+++++++++++++
A.config/youtube-dl/config | 3+++
M.emacs.d/init.el | 7++++---
M.emacs.d/lisp/config.org | 2+-
M.gitignore | 6++++++
5 files changed, 27 insertions(+), 4 deletions(-)

diff --git a/.config/systemd/user/emacs.service b/.config/systemd/user/emacs.service @@ -0,0 +1,13 @@ +[Unit] +Description=Emacs text editor +Documentation=info:emacs man:emacs(1) https://gnu.org/software/emacs/ + +[Service] +Type=forking +ExecStart=/usr/local/bin/emacs --daemon +ExecStop=/usr/local/bin/emacsclient --eval "(kill-emacs)" +Environment=SSH_AUTH_SOCK=%t/keyring/ssh +Restart=on-failure + +[Install] +WantedBy=default.target diff --git a/.config/youtube-dl/config b/.config/youtube-dl/config @@ -0,0 +1,2 @@ + +--prefer-ffmpeg+ \ No newline at end of file diff --git a/.emacs.d/init.el b/.emacs.d/init.el @@ -38,10 +38,11 @@ ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(org-display-custom-times 1) - '(org-export-with-sub-superscripts '{}) - '(org-time-stamp-custom-formats '("<%b %e %G>" . "<%m/%d/%y %a %H:%M>")) + '(org-export-with-sub-superscripts (quote {})) + '(org-time-stamp-custom-formats (quote ("<%b %e %G>" . "<%m/%d/%y %a %H:%M>"))) '(package-selected-packages - '(gitignore-mode company flycheck wc-mode htmlize fic-mode emojify org-bullets use-package-hydra use-package-ensure-system-package use-package-el-get use-package-chords undo-tree quelpa-use-package mu4e-query-fragments mu4e-overview mu4e-maildirs-extension mu4e-jump-to-list mu4e-conversation mu4e-alert modus-vivendi-theme modus-operandi-theme ivy-ycmd ivy-avy highlight fish-mode elfeed-web elfeed-score elfeed-protocol elfeed-org elfeed-goodies csgo-conf-mode counsel))) + (quote + (gitignore-mode company flycheck wc-mode htmlize fic-mode emojify org-bullets use-package-hydra use-package-ensure-system-package use-package-el-get use-package-chords undo-tree quelpa-use-package mu4e-query-fragments mu4e-overview mu4e-maildirs-extension mu4e-jump-to-list mu4e-conversation mu4e-alert modus-vivendi-theme modus-operandi-theme ivy-ycmd ivy-avy highlight fish-mode elfeed-web elfeed-score elfeed-protocol elfeed-org elfeed-goodies csgo-conf-mode counsel)))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. diff --git a/.emacs.d/lisp/config.org b/.emacs.d/lisp/config.org @@ -201,7 +201,7 @@ ** org #+BEGIN_SRC emacs-lisp -(require 'org-tempo) +;(require 'org-tempo) (setq org-src-preserve-indentation nil org-edit-src-content-indentation 0) diff --git a/.gitignore b/.gitignore @@ -87,6 +87,12 @@ flycheck_*.el !/.config/mimeapps.list !/.config/zsh/ !/.config/zsh/zshrc +!/.config/systemd +!/.config/systemd/user +!/.config/systemd/user/emacs.service +!/.config/youtube-dl +!/.config/youtube-dl/config + /.emacs.d/**/* !/.emacs.d/init.el