57 lines
1.9 KiB
EmacsLisp
57 lines
1.9 KiB
EmacsLisp
;;; init-crux.el --- -*- lexical-binding: t -*-
|
|
;;
|
|
;; Filename: init-crux.el
|
|
;; Description: Initialize Crux
|
|
;; Author: Mingde (Matthew) Zeng
|
|
;; Copyright (C) 2019 Mingde (Matthew) Zeng
|
|
;; Created: Tue Dec 24 13:15:38 2019 (-0500)
|
|
;; Version: 2.0.0
|
|
;; Last-Updated: Thu Dec 26 22:02:32 2019 (-0500)
|
|
;; By: Mingde (Matthew) Zeng
|
|
;; URL: https://github.com/MatthewZMD/.emacs.d
|
|
;; Keywords: M-EMACS .emacs.d crux
|
|
;; Compatibility: emacs-version >= 26.1
|
|
;;
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;
|
|
;;; Commentary:
|
|
;;
|
|
;; This initializes Crux
|
|
;;
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;
|
|
;; This program is free software: you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation, either version 3 of the License, or (at
|
|
;; your option) any later version.
|
|
;;
|
|
;; This program is distributed in the hope that it will be useful, but
|
|
;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
;; General Public License for more details.
|
|
;;
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
|
;;
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;
|
|
;;; Code:
|
|
|
|
;; CruxPac
|
|
(use-package crux
|
|
:bind
|
|
(("C-a" . crux-move-beginning-of-line)
|
|
("C-x 4 t" . crux-transpose-windows)
|
|
("C-x K" . crux-kill-other-buffers)
|
|
("C-k" . crux-smart-kill-line))
|
|
:config
|
|
(crux-with-region-or-buffer indent-region)
|
|
(crux-with-region-or-buffer untabify)
|
|
(crux-with-region-or-point-to-eol kill-ring-save)
|
|
(defalias 'rename-file-and-buffer #'crux-rename-file-and-buffer))
|
|
;; -CruxPac
|
|
|
|
(provide 'init-crux)
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;; init-crux.el ends here
|