aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/init-php.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/init-php.el')
-rw-r--r--lisp/init-php.el18
1 files changed, 0 insertions, 18 deletions
diff --git a/lisp/init-php.el b/lisp/init-php.el
deleted file mode 100644
index 7933bf6..0000000
--- a/lisp/init-php.el
+++ /dev/null
@@ -1,18 +0,0 @@
-(use-package php-mode)
-
-(use-package ac-php
- :config
- (add-hook 'mmm-mode-hook
- '(lambda ()
- (auto-complete-mode t)
- (require 'ac-php)
- (setq ac-sources '(ac-source-php ))
- (setq ac-sources '(ac-source-dictionary ac-source-abbrev ac-source-php ))
-
- (ac-php-core-eldoc-setup ) ;; enable eldoc
- (define-key php-mode-map (kbd "C-]") 'ac-php-find-symbol-at-point) ;; goto define
- (define-key php-mode-map (kbd "C-t") 'ac-php-location-stack-back))) ;; go back
-
-)
-
-(provide 'init-php)