Added ggtags
This commit is contained in:
parent
28e9695a24
commit
f9d740e73d
@ -11,7 +11,7 @@
|
|||||||
'(ecb-options-version "2.50")
|
'(ecb-options-version "2.50")
|
||||||
'(package-selected-packages
|
'(package-selected-packages
|
||||||
(quote
|
(quote
|
||||||
(dokuwiki-mode web-mode rainbow-mode yaml-mode scss-mode sass-mode less-css-mode pkgbuild-mode pip-requirements jedi company-php php-mode php-refactor-mode markdown-mode crystal-mode git-timemachine gitattributes-mode gitignore-mode gitconfig-mode git-gutter-fringe nginx-mode emmet-mode whitespace-cleanup-mode flycheck apache-mode neotree shrink-path all-the-icons highlight-indent-guides anzu sml-modeline smart-mode-line-powerline-theme smart-mode-line ecb diminish undo-tree nlinum sublime-themes use-package))))
|
(ggtags dokuwiki-mode web-mode rainbow-mode yaml-mode scss-mode sass-mode less-css-mode pkgbuild-mode pip-requirements jedi company-php php-mode php-refactor-mode markdown-mode crystal-mode git-timemachine gitattributes-mode gitignore-mode gitconfig-mode git-gutter-fringe nginx-mode emmet-mode whitespace-cleanup-mode flycheck apache-mode neotree shrink-path all-the-icons highlight-indent-guides anzu sml-modeline smart-mode-line-powerline-theme smart-mode-line ecb diminish undo-tree nlinum sublime-themes use-package))))
|
||||||
(custom-set-faces
|
(custom-set-faces
|
||||||
;; custom-set-faces was added by Custom.
|
;; custom-set-faces was added by Custom.
|
||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
1
init.el
1
init.el
@ -69,6 +69,7 @@
|
|||||||
(require 'init-web-mode nil 'noerror)
|
(require 'init-web-mode nil 'noerror)
|
||||||
(require 'init-ready nil 'noerror)
|
(require 'init-ready nil 'noerror)
|
||||||
(require 'init-dokuwiki nil 'noerror)
|
(require 'init-dokuwiki nil 'noerror)
|
||||||
|
(require 'init-ggtags nil 'noerror)
|
||||||
|
|
||||||
;;; Loads custom file
|
;;; Loads custom file
|
||||||
(when (file-exists-p custom-file)
|
(when (file-exists-p custom-file)
|
||||||
|
22
modules/init-ggtags.el
Normal file
22
modules/init-ggtags.el
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
;;; init-ggtags.el --- .Emacs Configuration -*- lexical-binding: t -*-
|
||||||
|
;;; Commentary:
|
||||||
|
;;
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(use-package ggtags
|
||||||
|
;; Enable for only languages
|
||||||
|
:config
|
||||||
|
(ggtags-mode 1)
|
||||||
|
:hook
|
||||||
|
(c++-mode . ggtags-mode)
|
||||||
|
(html-mode . ggtags-mode)
|
||||||
|
(js-mode . ggtags-mode)
|
||||||
|
(web-mode . ggtags-mode)
|
||||||
|
(sh-mode . ggtags-mode)
|
||||||
|
(php-mode . ggtags-mode))
|
||||||
|
|
||||||
|
(provide 'init-ggtags)
|
||||||
|
|
||||||
|
;; End:
|
||||||
|
;;; init-ggtags.el ends here
|
Loading…
x
Reference in New Issue
Block a user