Add headers and provide to each package

This commit is contained in:
Maciej 2020-07-24 09:10:11 +03:00
parent ae4946ea96
commit 4337243183
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
11 changed files with 105 additions and 11 deletions

View file

@ -1,7 +1,13 @@
;;; 01mac -- summary
;;; Commentary:
;;; Make Emacs play nicer with MacOS.
;;; Code:
;;;;;;;;; GC configuration ;;;;;;;;;;;;;;;;;;;
(setq gc-cons-threshold 50000000)
;;;;;;;;; TRAMP configuration ;;;;;;;;;;;;;;;;
(require 'tramp)
(setq tramp-default-method "ssh")
;;;;;;;;; Emacs bindings ;;;;;;;;;;;;;;;;;;;;;
@ -75,7 +81,7 @@
;; Kill current buffer and window
(global-set-key (kbd "C-c q") 'kill-buffer-and-window)
;; ibuffer
;; List buffers
(global-set-key (kbd "C-c b") 'ibuffer)
;; Move buffers around with buffer keys
@ -174,3 +180,6 @@
(keyfreq-mode t)
(keyfreq-autosave-mode t)
(provide '01mac)
;;; 01mac.el ends here