1

Remove Racer support

This commit is contained in:
Jessie Hildebrandt 2019-10-01 16:51:31 -04:00
parent 7f7ed215eb
commit 9dbbf28346

32
init.el
View File

@ -371,32 +371,6 @@
:mode
("\\.fish\\'" . fish-mode))
;;====================
;; Exec-Path-From-Shell (PATH Setting)
;;====================
;; Load Exec-Path-From-Shell (Non-Windows systems only)
(unless (string-equal system-type "windows-nt")
(use-package exec-path-from-shell
:demand
t
:custom
(exec-path-from-shell-arguments '("-l"))
:config
(add-to-list 'exec-path-from-shell-variables '"RUST_SRC_PATH")
(exec-path-from-shell-initialize)))
;;====================
;; Racer (Rust Completion)
;;====================
;; Load Racer
(use-package racer
:custom
(racer-rust-src-path nil)
:hook
(rust-mode . racer-mode))
;;====================
;; Package-Lint (Elisp Package Linter)
;;====================
@ -468,12 +442,6 @@
:after
(company))
;; [Rust]
;; Load Company-Racer
(use-package company-racer
:after
(company))
;;====================
;; Smart-Tabs-Mode (Superior Indentation Method)
;;====================