This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun delete-forward-all () | |
(interactive) | |
(let ((beg (point))) (move-beginning-of-line 1) (delete-region beg (point)))) | |
(global-set-key (kbd "C-u") 'delete-forward-all) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; late-night-theme.el --- Late Night theme for Emacs 24 | |
;; Author: Alex Schroeder | |
;; Maintainer: Daehyub Kim <lateau at gmail.com> | |
;; URL: https://gist.github.com/4420862 | |
;; Version: 0.0 | |
;; Keywords: theme, color | |
;;; Commentary: |
NewerOlder