aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-01-31 19:31:27 -0500
committerJesús <heckyel@hyperbola.info>2019-01-31 19:31:27 -0500
commit719257e801c6c02552192d98ad869a9c6cc13634 (patch)
tree796e5de73dba05466fb333cfd7e2ad0781acf3f3 /modules
parentf9d740e73d46f563fb0cd7cb3a1649e1643eeb05 (diff)
downloademacs-personal-719257e801c6c02552192d98ad869a9c6cc13634.tar.lz
emacs-personal-719257e801c6c02552192d98ad869a9c6cc13634.tar.xz
emacs-personal-719257e801c6c02552192d98ad869a9c6cc13634.zip
Delete ggtags
Diffstat (limited to 'modules')
-rw-r--r--modules/init-ggtags.el22
1 files changed, 0 insertions, 22 deletions
diff --git a/modules/init-ggtags.el b/modules/init-ggtags.el
deleted file mode 100644
index de10cc8..0000000
--- a/modules/init-ggtags.el
+++ /dev/null
@@ -1,22 +0,0 @@
-;;; 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