vimrc is updated to highlight what you search for
This commit is contained in:
parent
10798e31c6
commit
6ccba036aa
2 changed files with 4 additions and 2 deletions
3
profile
3
profile
|
@ -66,7 +66,8 @@ export JAVA_HOME=/usr
|
|||
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
|
||||
# Finished adapting your PATH environment variable for use with MacPorts.
|
||||
#export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Home/
|
||||
export JAVA_HOME="$(/usr/libexec/java_home)"
|
||||
#export JAVA_HOME="$(/usr/libexec/java_home)"
|
||||
export JAVA_HOME=$(readlink -f /usr/bin/java | sed "s:bin/java::")
|
||||
|
||||
#### ALIAS SECTION
|
||||
|
||||
|
|
3
vimrc
3
vimrc
|
@ -11,7 +11,7 @@ Plugin 'gmarik/Vundle.vim'
|
|||
" Plugin 'scala.vim'
|
||||
" Plugin 'vim-scala'
|
||||
Bundle 'derekwyatt/vim-scala'
|
||||
Plugin 'git@github.com:Valloric/YouCompleteMe.git'
|
||||
" Plugin 'git@github.com:Valloric/YouCompleteMe.git'
|
||||
|
||||
call vundle#end()
|
||||
|
||||
|
@ -52,4 +52,5 @@ let java_allow_cpp_keywords = 1
|
|||
set ruler
|
||||
set number
|
||||
set backspace=indent,eol,start
|
||||
set hlsearch
|
||||
|
||||
|
|
Loading…
Reference in a new issue