diff options
author | Jesús <heckyel@hyperbola.info> | 2018-11-21 17:10:19 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2018-11-21 17:10:19 -0500 |
commit | 6993bb819fdd1cf2b28a2b79b32795546c821c38 (patch) | |
tree | 81ad8c6b7f625286088454008f93b6430fcbd347 | |
parent | 60be10712742af355dec9cd6a93764a49a227af6 (diff) | |
download | emacs-personal-6993bb819fdd1cf2b28a2b79b32795546c821c38.tar.lz emacs-personal-6993bb819fdd1cf2b28a2b79b32795546c821c38.tar.xz emacs-personal-6993bb819fdd1cf2b28a2b79b32795546c821c38.zip |
Added dokuwiki-mode
-rw-r--r-- | custom.el | 2 | ||||
-rw-r--r-- | init.el | 2 | ||||
-rw-r--r-- | lisp/init-dokuwiki.el | 4 |
3 files changed, 6 insertions, 2 deletions
@@ -11,7 +11,7 @@ '(ecb-options-version "2.50") '(package-selected-packages (quote - (web-mode rainbow-mode yaml-mode scss-mode sass-mode less-css-mode pkgbuild-mode pip-requirements jedi markdown-mode crystal-mode nginx-mode emmet-mode whitespace-cleanup-mode flycheck neotree all-the-icons highlight-indent-guides anzu sml-modeline smart-mode-line-powerline-theme smart-mode-line ecb diminish undo-tree nlinum sublime-themes use-package)))) + (dokuwiki-mode web-mode rainbow-mode yaml-mode scss-mode sass-mode less-css-mode pkgbuild-mode pip-requirements jedi markdown-mode crystal-mode nginx-mode emmet-mode whitespace-cleanup-mode flycheck neotree all-the-icons highlight-indent-guides anzu sml-modeline smart-mode-line-powerline-theme smart-mode-line ecb diminish undo-tree nlinum sublime-themes use-package)))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. @@ -60,7 +60,7 @@ (require 'init-rainbow) (require 'init-web-mode) (require 'init-ready) - +(require 'init-dokuwiki) ;;; Loads custom file (when (file-exists-p custom-file) (load custom-file)) diff --git a/lisp/init-dokuwiki.el b/lisp/init-dokuwiki.el new file mode 100644 index 0000000..011c5bb --- /dev/null +++ b/lisp/init-dokuwiki.el @@ -0,0 +1,4 @@ +;; dokuwiki-mode +(use-package dokuwiki-mode) + +(provide 'init-dokuwiki) |