diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-06 09:30:48 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-06 09:30:48 +0000 |
commit | 3cef03cf58200254980a33bc3e8122c33ce32643 (patch) | |
tree | e775b2b25b77a34a30ad54267bddd7b1bf9d3983 | |
parent | af7481f5d083e700050860351892d97540e8e733 (diff) |
installed ox-hugo
-rw-r--r-- | custom-settings.el | 4 | ||||
-rw-r--r-- | init.el | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/custom-settings.el b/custom-settings.el index 9d3f779..f7d1aa1 100644 --- a/custom-settings.el +++ b/custom-settings.el @@ -69,10 +69,10 @@ '(nrepl-message-colors (quote ("#CC9393" "#DFAF8F" "#F0DFAF" "#7F9F7F" "#BFEBBF" "#93E0E3" "#94BFF3" "#DC8CC3"))) - '(org-sort-agenda-notime-is-late nil t) + '(org-sort-agenda-notime-is-late nil) '(package-selected-packages (quote - (company-irony beacon-mode python-pytest password-store csv-mode expand-region org-gcal lsp-python-ms ace-window discover-my-major popup-kill-ring amx gnu-elpa-keyring-update auto-package-update monokai-theme color-theme-monokai color-theme-sanityinc-tomorrow dracula-theme evil-mode yasnippet-snippets highlight-symbol rainbow-delimiters git-gutter Ivy org-caldav which-key-mode org-plus-contrib use-package ac-cider magit blacken py-autopep8 flycheck elpy yasnippet company-lsp company lsp-ui go-autocomplete lsp-mode go-mode markdown-mode gruvbox-theme helm org cider slime evil))) + (ox-hugo company-irony beacon-mode python-pytest password-store csv-mode expand-region org-gcal lsp-python-ms ace-window discover-my-major popup-kill-ring amx gnu-elpa-keyring-update auto-package-update monokai-theme color-theme-monokai color-theme-sanityinc-tomorrow dracula-theme evil-mode yasnippet-snippets highlight-symbol rainbow-delimiters git-gutter Ivy org-caldav which-key-mode org-plus-contrib use-package ac-cider magit blacken py-autopep8 flycheck elpy yasnippet company-lsp company lsp-ui go-autocomplete lsp-mode go-mode markdown-mode gruvbox-theme helm org cider slime evil))) '(pdf-view-midnight-colors (quote ("#fdf4c1" . "#282828"))) '(pos-tip-background-color "#36473A") '(pos-tip-foreground-color "#FFFFC8") @@ -66,6 +66,9 @@ (global-set-key (kbd "M-n") #'forward-paragraph) (global-set-key (kbd "M-p") #'backward-paragraph) +;; ox-hugo +(use-package ox-hugo + :after ox) ;; Deal with history (setq savehist-file "~/.emacs.d/savehist") |