summaryrefslogtreecommitdiff
path: root/.emacs.d/init.el
diff options
context:
space:
mode:
authorSteve Lee <me@xiangyangli.com>2017-12-13 08:10:18 +0800
committerSteve Lee <me@xiangyangli.com>2017-12-13 08:10:18 +0800
commitc30554da3886e39470fcd2c69114043a37c75a52 (patch)
treeaef4c51f23e432b3f8054bc1af9b56668f4e2e5e /.emacs.d/init.el
parentf307bb8721e23ecaf6347a1766fe02e764120bc4 (diff)
downloaddotfiles-c30554da3886e39470fcd2c69114043a37c75a52.tar.xz
dotfiles-c30554da3886e39470fcd2c69114043a37c75a52.zip
add some configuration
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r--.emacs.d/init.el20
1 files changed, 17 insertions, 3 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 51bba67..6ce7dee 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.
@@ -48,4 +56,10 @@
(let ((file-name-handler-alist nil))
(require 'init-evil)
(require 'init-org)
- (require 'init-program-basic))
+ (require 'init-program-basic)
+ (require 'init-company)
+ (require 'init-flycheck)
+ (require 'init-window-numbering))
+
+(provide 'init)
+;;; init.el ends here