about summary refs log tree commit diff stats
path: root/.emacs.d/lisp/init-lisp.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/lisp/init-lisp.el')
-rw-r--r--.emacs.d/lisp/init-lisp.el15
1 files changed, 15 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-lisp.el b/.emacs.d/lisp/init-lisp.el
new file mode 100644
index 0000000..6abe0eb
--- /dev/null
+++ b/.emacs.d/lisp/init-lisp.el
@@ -0,0 +1,15 @@
+;;; init-lisp.el --- LISP Configuration File -*- lexical-binding: t -*-
+;;; Commentary:
+;;; Code:
+(require 'init-paredit)
+
+(use-package eval-expr
+  :bind ("M-:" . eval-expr)
+  :config
+  (defun eval-expr-minibuffer-setup ()
+    (local-set-key (kbd "<tab>") #'completion-at-point)
+    (set-syntax-table emacs-lisp-mode-syntax-table)
+    (paredit-mode)))
+
+(provide 'init-lisp)
+;;; init-lisp.el ends here