Browse Source

Add rtags packages and some helpers for c/c++

Taylor Bockman 4 years ago
parent
commit
7f9d95aa09
  1. 5
      dotfiles/emacs.d/init.el
  2. 4
      dotfiles/emacs.d/package.el

5
dotfiles/emacs.d/init.el

@ -101,9 +101,10 @@ There are two things you can do about this warning:
(filename . ".hpp") (filename . ".hpp")
(filename . ".h") (filename . ".h")
(filename . ".java") (filename . ".java")
(filename . ".py")
(filename . ".lisp")
(filename . ".properties") (filename . ".properties")
(filename . ".gradle") (filename . ".gradle")
(filename . ".py")
(filename . ".am") (filename . ".am")
(mode . yaml-mode)) (mode . yaml-mode))
) )
@ -179,6 +180,8 @@ There are two things you can do about this warning:
(setq inferior-lisp-program "sbcl") (setq inferior-lisp-program "sbcl")
(setq slime-contribs '(slime-fancy)) (setq slime-contribs '(slime-fancy))
;; Enable semantic for language-aware editing commands
(setq semantic-mode 't)
;;-------------------------------------------------------------------------------------- ;;--------------------------------------------------------------------------------------
;; Save hooks ;; Save hooks

4
dotfiles/emacs.d/package.el

@ -18,6 +18,7 @@
irony irony
counsel counsel
swiper swiper
;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;
;; Programming modes ;; Programming modes
@ -66,10 +67,13 @@
;; Project Interaction/Search/Syntax ;; Project Interaction/Search/Syntax
flycheck flycheck
flycheck-pos-tip flycheck-pos-tip
flycheck-rtags
grizzl grizzl
smex smex
projectile projectile
counsel-gtags counsel-gtags
rtags
company-rtags
;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
) )

Loading…
Cancel
Save