浏览代码

Add flycheck

master
ßingen 8 年前
父节点
当前提交
04288968ea
共有 4 个文件被更改,包括 15 次插入1 次删除
  1. +1
    -1
      .gitignore
  2. +2
    -0
      init.el
  3. +3
    -0
      lisp/init-elpa.el
  4. +9
    -0
      lisp/init-flycheck.el

+ 1
- 1
.gitignore 查看文件

ido.last ido.last
recentf recentf
ede-projects.el ede-projects.el
semanticdb

+ 2
- 0
init.el 查看文件

(when *spell-check-support-enabled* (when *spell-check-support-enabled*
(require 'init-spelling)) (require 'init-spelling))


(require 'init-flycheck)

;;(require 'init-marmalade) ;;(require 'init-marmalade)


;;---------------------------------------------------------------------------- ;;----------------------------------------------------------------------------

+ 3
- 0
lisp/init-elpa.el 查看文件

(add-to-list 'package-archives `("melpa" . ,(if (< emacs-major-version 24) (add-to-list 'package-archives `("melpa" . ,(if (< emacs-major-version 24)
"http://melpa.org/packages/" "http://melpa.org/packages/"
"https://melpa.org/packages/"))) "https://melpa.org/packages/")))
;(add-to-list 'package-archives `("stable melpa" . ,(if (< emacs-major-version 24)
; "http://stable.melpa.org/packages/"
; "https://stable.melpa.org/packages/")))





+ 9
- 0
lisp/init-flycheck.el 查看文件

;(use-package flycheck
; :ensure t
; :init (global-flycheck-mode))

(require-package 'flycheck)

;(add-hook 'after-init-hook #'global-flycheck-mode)

(provide 'init-flycheck)

正在加载...
取消
保存