Change-Id: Ife854e83ef97f1e9a26072f2ab2a3b23f5d64840 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9154 Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			933 B
		
	
	
	
		
			EmacsLisp
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			933 B
		
	
	
	
		
			EmacsLisp
		
	
	
	
	
	
;; 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
 | 
						|
;; TODO(tazjin): what is this?
 | 
						|
(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)
 | 
						|
 | 
						|
(provide 'modes)
 |