mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-30 02:44:42 +01:00
Fix
This commit is contained in:
parent
90243f5776
commit
f517065e8e
2 changed files with 13 additions and 4 deletions
11
.emacs
11
.emacs
|
|
@ -39,6 +39,13 @@
|
||||||
(ido-mode 1)
|
(ido-mode 1)
|
||||||
|
|
||||||
; Scala
|
; Scala
|
||||||
|
;; Load the ensime lisp code...
|
||||||
|
(add-to-list 'load-path "ensime/elisp/")
|
||||||
|
(require 'ensime)
|
||||||
|
|
||||||
|
;; This step causes the ensime-mode to be started whenever
|
||||||
|
;; scala-mode is started for a buffer. You may have to customize this step
|
||||||
|
;; if you're not using the standard scala mode.
|
||||||
(add-hook 'scala-mode-hook 'ensime-scala-mode-hook)
|
(add-hook 'scala-mode-hook 'ensime-scala-mode-hook)
|
||||||
|
|
||||||
; Debug
|
; Debug
|
||||||
|
|
@ -51,7 +58,9 @@
|
||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
;; Your init file should contain only one such instance.
|
;; Your init file should contain only one such instance.
|
||||||
;; If there is more than one, they won't work right.
|
;; If there is more than one, they won't work right.
|
||||||
'(custom-safe-themes (quote ("8aebf25556399b58091e533e455dd50a6a9cba958cc4ebb0aab175863c25b9a4" default))))
|
'(custom-safe-themes
|
||||||
|
(quote
|
||||||
|
("8aebf25556399b58091e533e455dd50a6a9cba958cc4ebb0aab175863c25b9a4" default))))
|
||||||
(custom-set-faces
|
(custom-set-faces
|
||||||
;; custom-set-faces was added by Custom.
|
;; custom-set-faces was added by Custom.
|
||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
|
|
||||||
6
.vimrc
6
.vimrc
|
|
@ -157,9 +157,9 @@ if has("autocmd")
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" Eclim Settings
|
" Eclim Settings
|
||||||
let g:EclimScalaSearchSingleResult = 'edit'
|
" let g:EclimScalaSearchSingleResult = 'edit'
|
||||||
let g:EclimCompletionMethod = 'omnifunc'
|
" let g:EclimCompletionMethod = 'omnifunc'
|
||||||
let g:SuperTabDefaultCompletionType = 'context'
|
" let g:SuperTabDefaultCompletionType = 'context'
|
||||||
map <C-Space> :ScalaSearch<CR>
|
map <C-Space> :ScalaSearch<CR>
|
||||||
|
|
||||||
set wildignore=*.o,*~,*.pyc,*.class,\$global
|
set wildignore=*.o,*~,*.pyc,*.class,\$global
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue