aboutsummaryrefslogtreecommitdiffstats
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
parentf9d740e73d46f563fb0cd7cb3a1649e1643eeb05 (diff)
downloademacs-personal-719257e801c6c02552192d98ad869a9c6cc13634.tar.lz
emacs-personal-719257e801c6c02552192d98ad869a9c6cc13634.tar.xz
emacs-personal-719257e801c6c02552192d98ad869a9c6cc13634.zip
Delete ggtags
-rw-r--r--custom.el2
-rw-r--r--init.el1
-rw-r--r--modules/init-ggtags.el22
3 files changed, 1 insertions, 24 deletions
diff --git a/custom.el b/custom.el
index 308353d..7b9cf66 100644
--- a/custom.el
+++ b/custom.el
@@ -11,7 +11,7 @@
'(ecb-options-version "2.50")
'(package-selected-packages
(quote
- (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))))
+ (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 was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
diff --git a/init.el b/init.el
index ecc5556..0c1b212 100644
--- a/init.el
+++ b/init.el
@@ -69,7 +69,6 @@
(require 'init-web-mode nil 'noerror)
(require 'init-ready nil 'noerror)
(require 'init-dokuwiki nil 'noerror)
-(require 'init-ggtags nil 'noerror)
;;; Loads custom file
(when (file-exists-p custom-file)
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