about summary refs log tree commit diff
path: root/tools/emacs/config/modes.el
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2020-06-18T19·19+0100
committerVincent Ambo <mail@tazj.in>2020-06-18T19·19+0100
commit0b0e8c2da77979eaea9e0b0da865d35bd86936d5 (patch)
tree0327dfb1eddc1c4f1847f27043699fb57fed31be /tools/emacs/config/modes.el
parent9448a2262b79e67c6b8b9a53cd806cd1f57d3da7 (diff)
chore(tazjin/emacs): Move //tools/emacs to //users/tazjin/emacs r/1025
Change-Id: I9dfbd0bb1fd3e215bb91c5734fb0934ee3faeae6
Diffstat (limited to 'tools/emacs/config/modes.el')
-rw-r--r--tools/emacs/config/modes.el37
1 files changed, 0 insertions, 37 deletions
diff --git a/tools/emacs/config/modes.el b/tools/emacs/config/modes.el
deleted file mode 100644
index 69fb523d0d91..000000000000
--- a/tools/emacs/config/modes.el
+++ /dev/null
@@ -1,37 +0,0 @@
-;; Initializes modes I use.
-
-(add-hook 'prog-mode-hook 'esk-add-watchwords)
-(add-hook 'prog-mode-hook 'hl-line-mode)
-
-;; Use auto-complete as completion at point
-(defun set-auto-complete-as-completion-at-point-function ()
-  (setq completion-at-point-functions '(auto-complete)))
-
-(add-hook 'auto-complete-mode-hook
-          'set-auto-complete-as-completion-at-point-function)
-
-;; Enable rainbow-delimiters for all things programming
-(add-hook 'prog-mode-hook 'rainbow-delimiters-mode)
-
-;; Enable Paredit & Company in Emacs Lisp mode
-(add-hook 'emacs-lisp-mode-hook 'company-mode)
-
-;; Always highlight matching brackets
-(show-paren-mode 1)
-
-;; Always auto-close parantheses and other pairs
-(electric-pair-mode)
-
-;; Keep track of recent files
-(recentf-mode)
-
-;; Easily navigate sillycased words
-(global-subword-mode 1)
-
-;; Transparently open compressed files
-(auto-compression-mode t)
-
-;; Configure go-mode for Go2 Alpha
-(add-to-list 'auto-mode-alist '("\\.go2$" . go-mode))
-
-(provide 'modes)