derekwyatt / vim-scala

My work on integration of Scala into Vim - not a ton here, but useful for me.
http://derekwyatt.org
Apache License 2.0
1.09k stars 144 forks source link

Problems opening a directory #135

Closed ikouchiha47 closed 7 years ago

ikouchiha47 commented 7 years ago

When I open a directory like vim -u ~/.vimrc.scala . . it shows nothing. just blank. Its supposed to show the default, list of files and directories.

set nocompatible              " be iMproved, required
filetype off                  " required

set runtimepath="~/.vim_scala_runtime"
set rtp+=~/.vim_scala_runtime/bundle/Vundle.vim

call vundle#begin('~/.vim_scala_runtime/bundle')
Plugin 'derekwyatt/vim-scala'
call vundle#end()            " required

filetype plugin indent on
" show existing tab with 4 spaces width
set tabstop=2
" when indenting with '>', use 4 spaces width
set shiftwidth=2
" On pressing tab, insert 4 spaces
set expandtab
autocmd BufEnter * silent! lcd %:p:h
syntax on
set number
:inoremap zz <Esc>
autocmd BufEnter * silent! lcd %:p:h

Also no syntax highlighting.. What is happening ?