diff options
| author | Steve Lee <me@xiangyangli.com> | 2017-12-13 08:10:18 +0800 |
|---|---|---|
| committer | Steve Lee <me@xiangyangli.com> | 2017-12-13 08:10:18 +0800 |
| commit | c30554da3886e39470fcd2c69114043a37c75a52 (patch) | |
| tree | aef4c51f23e432b3f8054bc1af9b56668f4e2e5e /.emacs.d/init.el~ | |
| parent | f307bb8721e23ecaf6347a1766fe02e764120bc4 (diff) | |
| download | dotfiles-c30554da3886e39470fcd2c69114043a37c75a52.tar.xz dotfiles-c30554da3886e39470fcd2c69114043a37c75a52.zip | |
add some configuration
Diffstat (limited to '.emacs.d/init.el~')
| -rw-r--r-- | .emacs.d/init.el~ | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/.emacs.d/init.el~ b/.emacs.d/init.el~ index e6289a8..3261777 100644 --- a/.emacs.d/init.el~ +++ b/.emacs.d/init.el~ @@ -1,3 +1,9 @@ +;;; package --- My .emacs.d init. 2017.12.12 +;;; Commentary: +;; -*- coding: utf-8 -*- + +;;; Code: + ;; Base config (menu-bar-mode -1) (tool-bar-mode -1) @@ -29,9 +35,11 @@ ;; If there is more than one, they won't work right. '(custom-safe-themes (quote - ("4486ade2acbf630e78658cd6235a5c6801090c2694469a2a2b4b0e12227a64b9" "66881e95c0eda61d34aa7f08ebacf03319d37fe202d68ecf6a1dbfd49d664bc3" default))) + ("4486ade2acbf630e78658cd6235a5c6801090c2694469a2a2b4b0e12227a64b9" "66881e95c0eda61d34aa7f08ebacf03319d37fe202d68ecf6a1dbfd49d664bc3" default))) '(inhibit-startup-screen t) - '(package-selected-packages (quote (oceanic-theme forest-blue-theme org ## evil)))) + '(package-selected-packages + (quote + (window-numbering flycheck company oceanic-theme forest-blue-theme org ## evil)))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. @@ -47,9 +55,10 @@ (let ((file-name-handler-alist nil)) (require 'init-evil) - (require 'init-org)) + (require 'init-org) + (require 'init-program-basic) + (require 'init-company) + (require 'init-flycheck)) -;; C programming -(setq-default c-basic-offset 4 - tab-width 4 - indent-tabs-mode t) +(provide 'init) +;;; init.el ends here |
