diff options
| author | Steve Lee <me@xiangyangli.com> | 2019-05-12 23:30:23 +0800 |
|---|---|---|
| committer | Steve Lee <me@xiangyangli.com> | 2019-05-12 23:30:23 +0800 |
| commit | da038cefee35b34398f175f862f8a8014460e972 (patch) | |
| tree | 89a620d0df9f85a546668916004262265ce18cbf /.emacs.d/init.el~ | |
| parent | 8fccba38e0d669dc1b30882b110c155ee84f63ca (diff) | |
| download | dotfiles-da038cefee35b34398f175f862f8a8014460e972.tar.xz dotfiles-da038cefee35b34398f175f862f8a8014460e972.zip | |
ignore tmp file
Diffstat (limited to '.emacs.d/init.el~')
| -rw-r--r-- | .emacs.d/init.el~ | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/.emacs.d/init.el~ b/.emacs.d/init.el~ deleted file mode 100644 index 99dffce..0000000 --- a/.emacs.d/init.el~ +++ /dev/null @@ -1,70 +0,0 @@ -;;; package --- My .emacs.d init. 2017.12.12 -;;; Commentary: -;; -*- coding: utf-8 -*- - -;;; Code: - -;; Base config - -;; Added by Package.el. This must come before configurations of -;; installed packages. Don't delete this line. If you don't want it, -;; just comment it out by adding a semicolon to the start of the line. -;; You may delete these explanatory comments. -;; (package-initialize) -(setq debug-on-error t) - -;; Path -(add-to-list 'load-path (expand-file-name "lisp" user-emacs-directory)) - -(menu-bar-mode -1) -(tool-bar-mode -1) -(scroll-bar-mode -1) -(blink-cursor-mode -1) - - -;; Line number -;; (global-linum-mode 1) -;; Disable visual bell -(setq ring-bell-function 'ignore) -;; Transparent -;;(set-frame-parameter (selected-frame) 'alpha '(85 . 50)) -;;(add-to-list 'default-frame-alist '(alpha . (85 . 50))) - -;; Personal information -(setq user-full-name "李向阳 141160029" - user-mail-address "me@xiangyangli.com") - -;; Bootstrap -(setq custom-file (expand-file-name "custom.el" user-emacs-directory)) - -;; (setq emacs-load-start-time (current-time)) - -(let ((file-name-handler-alist nil)) - (require 'init-elpa) - (require 'init-evil) - (require 'init-org) - (require 'init-program-basic) - (require 'init-company) - (require 'init-flycheck) - (require 'init-expand-region) - (require 'init-helm) - (require 'init-neotree) - (require 'init-window-numbering)) - -;; Theme -(load-theme 'misterioso t) -;; Make highlight color differ from the highlight line - -;; Highlight current line, and keep syntax hightlight(:interit nil) -(when window-system - (global-hl-line-mode)) -(set-face-attribute 'hl-line nil :inherit nil :background "gray13") - -;;---------------------------------------------------------------------------- -;; Variables configured via the interactive 'customize' interface -;;---------------------------------------------------------------------------- -(when (file-exists-p custom-file) - (load custom-file)) - -(provide 'init) -;;; init.el ends here |
