new lint help
This commit is contained in:
parent
213c502aeb
commit
96e8a1d428
8 changed files with 481 additions and 70 deletions
|
|
@ -1,12 +1,32 @@
|
|||
(setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/")
|
||||
("org" . "http://orgmode.org/elpa/")
|
||||
("marmalade" . "http://marmalade-repo.org/packages/")
|
||||
("melpa-stable" . "http://melpa-stable.milkbox.net/packages/")))
|
||||
(package-initialize)
|
||||
;;; init.el --- Spacemacs Initialization File
|
||||
;;
|
||||
;; Copyright (c) 2012-2014 Sylvain Benner
|
||||
;; Copyright (c) 2014-2015 Sylvain Benner & Contributors
|
||||
;;
|
||||
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
||||
;; URL: https://github.com/syl20bnr/spacemacs
|
||||
;;
|
||||
;; This file is not part of GNU Emacs.
|
||||
;;
|
||||
;;; License: GPLv3
|
||||
|
||||
(defun require-package (package)
|
||||
(setq-default highlight-tabs t)
|
||||
"Install given PACKAGE."
|
||||
(unless (package-installed-p package)
|
||||
(unless (assoc package package-archive-contents)
|
||||
(package-refresh-contents))))
|
||||
;; Without this comment emacs25 adds (package-initialize) here
|
||||
;; (package-initialize)
|
||||
|
||||
(setq gc-cons-threshold 100000000)
|
||||
(defconst spacemacs-version "0.105.2" "Spacemacs version.")
|
||||
(defconst spacemacs-emacs-min-version "24.3" "Minimal version of Emacs.")
|
||||
|
||||
(if (not (version<= spacemacs-emacs-min-version emacs-version))
|
||||
(message (concat "Your version of Emacs (%s) is too old. "
|
||||
"Spacemacs requires Emacs version %d or above.")
|
||||
emacs-version spacemacs-emacs-min-version)
|
||||
(load-file (concat user-emacs-directory "core/core-load-paths.el"))
|
||||
(when init-file-debug (require 'core-debug))
|
||||
(require 'core-spacemacs)
|
||||
(spacemacs/init)
|
||||
(spacemacs/maybe-install-dotfile)
|
||||
(configuration-layer/sync)
|
||||
(spacemacs/setup-startup-hook)
|
||||
(require 'server)
|
||||
(unless (server-running-p) (server-start)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue