Procházet zdrojové kódy

Add flycheck

master
ßingen před 9 roky
rodič
revize
04288968ea
4 změnil soubory, kde provedl 15 přidání a 1 odebrání
  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 Zobrazit soubor

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

+ 2
- 0
init.el Zobrazit soubor

(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 Zobrazit soubor

(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 Zobrazit soubor

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

(require-package 'flycheck)

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

(provide 'init-flycheck)

Načítá se…
Zrušit
Uložit