blob: fb9862b3d93f55ba12a2739cede06a4a490a592a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
;;; packages.el --- aminb layer packages file for Spacemacs.
;;
;; Copyright (c) 2016 Amin Bandali
;;
;; Author: Amin Bandali <amin@aminb.org>
;; URL: https://github.com/aminb/dotfiles
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
;;; Commentary:
;; This file is a collection of my settings and customizations on top of
;; spacemacs.
;;; Code:
(defconst aminb-packages
'(crux writeroom-mode)
"The list of Lisp packages required by the aminb layer.")
(defun aminb/init-crux ()
(use-package crux
:defer t
:bind (("C-c d" . crux-duplicate-current-line-or-region)
("C-c M-d" . crux-duplicate-and-comment-current-line-or-region)
)))
(defun aminb/init-writeroom-mode ()
(use-package writeroom-mode ; Distraction-free editing
:defer t
:config (setq writeroom-width 82)
:bind (("C-c W" . writeroom-mode)
("s-?" . writeroom-toggle-mode-line))))
;;; packages.el ends here
|