Remove function args package

This commit is contained in:
laurensmiers 2016-04-08 17:24:39 +02:00
parent be38f21e1c
commit b9e927496f

12
init.el
View file

@ -21,12 +21,13 @@
;; my required packages ;; my required packages
(defconst my-packages (defconst my-packages
'(anzu '(
anzu
;; company ;; company
helm helm
helm-gtags helm-gtags
helm-swoop helm-swoop
function-args undo-tree
clean-aindent-mode clean-aindent-mode
comment-dwim-2 comment-dwim-2
dtrt-indent dtrt-indent
@ -35,7 +36,6 @@
yasnippet yasnippet
smartparens smartparens
volatile-highlights volatile-highlights
undo-tree
flycheck flycheck
zygospore)) zygospore))
@ -88,12 +88,6 @@
(require 'flycheck) (require 'flycheck)
(add-hook 'after-init-hook #'global-flycheck-mode) (add-hook 'after-init-hook #'global-flycheck-mode)
;; function-args --- completion and showing inline arguments hint for C/C++
(require 'function-args)
(fa-config-default)
(define-key c-mode-map [(tab)] 'moo-complete)
(define-key c++-mode-map [(tab)] 'moo-complete)
;; show unnecessary whitespace that can mess up your diff ;; show unnecessary whitespace that can mess up your diff
(add-hook 'prog-mode-hook (lambda () (interactive) (setq show-trailing-whitespace 1))) (add-hook 'prog-mode-hook (lambda () (interactive) (setq show-trailing-whitespace 1)))