Skip to content
Snippets Groups Projects
Commit 72457dc6 authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Ameliore l'utilisation de flycheck

parent 9c763862
No related branches found
No related tags found
No related merge requests found
......@@ -5,21 +5,20 @@
(setq max-lisp-eval-depth 10000)
(setq max-specpdl-size 10000)
(require 'package)
(require 'package)
(setq package-enable-at-startup nil)
;; set is-standalone to true to use the local melpa archive
(defvar is-standalone t)
(if is-standalone
(setq package-archives '(("myelpa" . "~/.emacs.d/myelpa/")))
'((add-to-list 'package-archives
(add-to-list 'package-archives
'("melpa" . "http://melpa.org/packages/"))
(add-to-list 'package-archives
'("gnu" . "http://elpa.gnu.org/packages/"))
(add-to-list 'package-archives
'("melpa3" . "http://www.mirrorservice.org/sites/stable.melpa.org/packages/"))
))
;; set is-standalone to true to use the local melpa archive
(defvar is-standalone nil)
(if is-standalone
(setq package-archives '(("myelpa" . "~/.emacs.d/myelpa/")))
nil)
(package-initialize)
......@@ -40,6 +39,7 @@
'(all-the-icons-ivy-buffer-commands (quote (ivy-switch-buffer-other-window ivy-switch-buffer)))
'(elpy-rpc-backend "jedi" t)
'(hydra-hint-display-type (quote posframe))
'(irony-cdb-search-directory-list (quote ("." "build")))
'(org-confirm-babel-evaluate nil)
'(org-default-notes-file (concat org-directory "/notes.org"))
'(org-directory "~/Sync/orgfiles")
......@@ -50,7 +50,7 @@
'(org-startup-indented t)
'(package-selected-packages
(quote
(tabbar cmake-font-lock alect-theme zero-dark-theme autumn-light-theme solarized-dark-theme misterioso misterioso-theme zenburn sourcerer-theme flycheck-pos-tip flycheck-clojure ox-reveal posframe processing-snippets processing-mode rg deadgrep flycheck-rust cargo racer yasnippet-classic-snippets rustic lsp-rust lsp-java company-lsp lsp-ui lsp-mode lsp yasnippet-snippets counsel-spotify exec-path-from-shell easy-kill auto-yasnippet org-pdfview pdf-tools atomic-chrome mingus simple-mpc pcre2el ag wgrep-ag wgrep haskell-mode aggressive-indent treemacs-projectile treemacs prodigy origami dumb-jump cider ggtags circe-notifications circe org-gcal mu4e-alert git-timemachine git-gutter magit hydra default-text-scale smartparens projectile auctex tern-auto-complete tern js2-refactor ac-js2 js2-mode emmet-mode web-mode iedit expand-region multiple-cursors hungry-delete beacon undo-tree virtualenvwrapper elpy flycheck doom-modeline doom-themes tao-theme poet-theme faff-theme zerodark-theme alect-themes moe-theme base16-theme zenburn-theme color-theme-modern company-jedi irony-eldoc company-irony company counsel ace-window htmlize noflet org-bullets which-key try use-package)))
(flycheck-irony tabbar cmake-font-lock alect-theme zero-dark-theme autumn-light-theme solarized-dark-theme misterioso misterioso-theme zenburn sourcerer-theme flycheck-pos-tip flycheck-clojure ox-reveal posframe processing-snippets processing-mode rg deadgrep flycheck-rust cargo racer yasnippet-classic-snippets rustic lsp-rust lsp-java company-lsp lsp-ui lsp-mode lsp yasnippet-snippets counsel-spotify exec-path-from-shell easy-kill auto-yasnippet org-pdfview pdf-tools atomic-chrome mingus simple-mpc pcre2el ag wgrep-ag wgrep haskell-mode aggressive-indent treemacs-projectile treemacs prodigy origami dumb-jump cider ggtags circe-notifications circe org-gcal mu4e-alert git-timemachine git-gutter magit hydra default-text-scale smartparens projectile auctex tern-auto-complete tern js2-refactor ac-js2 js2-mode emmet-mode web-mode iedit expand-region multiple-cursors hungry-delete beacon undo-tree virtualenvwrapper elpy flycheck doom-modeline doom-themes tao-theme poet-theme faff-theme zerodark-theme alect-themes moe-theme base16-theme zenburn-theme color-theme-modern company-jedi irony-eldoc company-irony company counsel ace-window htmlize noflet org-bullets which-key try use-package)))
'(sp-escape-quotes-after-insert nil))
(byte-recompile-directory (expand-file-name "~/.emacs.d") 0)
......
......@@ -1454,6 +1454,11 @@
(add-hook 'flycheck-mode-hook #'flycheck-rust-setup)
(add-hook 'rust-mode-hook 'flycheck-mode))
(use-package flycheck-irony
:ensure t
:config
(eval-after-load 'flycheck
'(add-hook 'flycheck-mode-hook #'flycheck-irony-setup)))
#+END_SRC
* Ripgrep
#+BEGIN_SRC emacs-lisp
......@@ -1469,7 +1474,7 @@
#+BEGIN_SRC emacs-lisp
(use-package fzf :ensure t)
#+END_SRC
* All the icons
* COMMENT All the icons
#+BEGIN_SRC emacs-lisp
(use-package all-the-icons
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment