blob: 6abe0ebf3e7895f5eb568a4bc3ede4e8c17dbd55 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|