aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--custom.el2
-rw-r--r--init.el2
-rw-r--r--lisp/init-dokuwiki.el4
3 files changed, 6 insertions, 2 deletions
diff --git a/custom.el b/custom.el
index b219845..adbb6ab 100644
--- a/custom.el
+++ b/custom.el
@@ -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.
diff --git a/init.el b/init.el
index a3c3b8a..1639b06 100644
--- a/init.el
+++ b/init.el
@@ -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)