-
Notifications
You must be signed in to change notification settings - Fork 1
/
post-custom.el
52 lines (40 loc) · 1.26 KB
/
post-custom.el
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
;;; post-custom.el --- Emacs customization -*- lexical-binding: t -*-
;; Copyright (c) 2022 mattiasdrp and contributors.
;; Author: mattiasdrp
;; Maintainer: mattiasdrp <https://github.com/mattiasdrp>
;; Created: 17 august 2022
;; Version: 1.0
;; Licence: MIT
;; Keywords: emacs, init, convenience, configuration
;; URL: https://github.com/mattiasdrp/pokemacs
;;; Commentary:
;; This file will be loaded when emacs has finished initializing everything
;; and allows to override some bindings and behaviours that are not
;; controlled by custom.el
;;; Code:
(when use-mu4e
(use-package smtpmail
:ensure nil
:ensure-system-package msmtp))
;; (load-file (expand-file-name "~/mu4e/mu4e.el"))
;; (general-unbind
;; "C-o"
;; )
;; (general-unbind
;; :keymaps 'tuareg-mode-map
;; "C-c TAB"
;; )
;; (general-define-key
;; "C-x 1" 'delete-other-windows
;; )
;; (general-define-key
;; :prefix "M-z"
;; "w" 'mdrp/resize-window-width
;; "h" 'mdrp/resize-window-height)
;; (general-define-key
;; :keymaps 'tuareg-mode-map
;; "C-x M-1" 'delete-other-windows
;; )
(provide 'post-custom)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; post-custom.el ends here