Fix backup saving
This commit is contained in:
parent
9fce4365dc
commit
5bd7066cde
13 changed files with 47 additions and 32 deletions
|
|
@ -15,11 +15,9 @@
|
|||
(company-mode 1)
|
||||
(flycheck-mode 1)
|
||||
(set (make-local-variable 'company-backends)
|
||||
'((elisp-company company-capf company-yasnippet company-files))))
|
||||
'((company-yasnippet company-dabbrev-code company-files))))
|
||||
|
||||
;;========== Hooks =================================
|
||||
(add-hook 'emacs-lisp-mode-hook 'editor-config-elisp)
|
||||
(add-hook 'emacs-lisp-mode-hook 'completion-config-elisp)
|
||||
|
||||
(provide 'elisp)
|
||||
;;; elisp.el ends here.
|
||||
|
|
|
|||
|
|
@ -15,8 +15,7 @@
|
|||
(alchemist-mode 1)
|
||||
(company-mode 1)
|
||||
(set (make-local-variable 'company-backends)
|
||||
'((alchemist-company company-capf company-dabbrev-code company-yasnippet
|
||||
company-files))))
|
||||
'((company-alchemist company-yasnippet company-dabbrev company-files))))
|
||||
|
||||
;;========== Hooks =================================
|
||||
(add-hook 'elixir-mode-hook 'editor-config-elixir)
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
;; Indentation and line length
|
||||
(set-width-80)
|
||||
(set-indent 2)
|
||||
(setq ruby-deep-indent-paren nil)
|
||||
|
||||
;; Do not align 'begin' and 'while' ;;
|
||||
(setq ruby-align-to-stmt-keywords '(if begin case elseif rescue))
|
||||
|
|
@ -48,7 +49,7 @@
|
|||
|
||||
;; Initalize completion
|
||||
(set (make-local-variable 'company-backends)
|
||||
'((company-etags company-yasnippet company-files))))
|
||||
'((company-yasnippet company-etags company-dabbrev-code company-files))))
|
||||
|
||||
;;========== Hooks ================================
|
||||
(add-hook 'ruby-mode-hook 'editor-ruby-mode-config)
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
(racer-mode 1)
|
||||
(company-mode 1)
|
||||
(flycheck-mode 1)
|
||||
(flymake-mode)
|
||||
(flymake-mode 1)
|
||||
(set (make-local-variable 'company-backends)
|
||||
'((company-racer company-capf company-dabbrev-code company-yasnippet
|
||||
company-files))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue