Browse Source

Add flycheck

master
ßingen 8 years ago
parent
commit
04288968ea
4 changed files with 15 additions and 1 deletions
  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 View File

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

+ 2
- 0
init.el View File

(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 View File

(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 View File

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

(require-package 'flycheck)

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

(provide 'init-flycheck)

Loading…
Cancel
Save