Created
April 29, 2017 11:17
-
-
Save mcarolan/00f073593b0b23db3a2ba3dd8a297e8b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nocompatible | |
syntax enable | |
filetype plugin on | |
set path+=** | |
set wildmenu | |
set wildignore+=*.class,**/target/** | |
set noswapfile | |
let g:netrw_banner=0 " disable annoying banner | |
let g:netrw_browse_split=4 " open in prior window | |
let g:netrw_altv=1 " open splits to the right | |
let g:netrw_liststyle=3 " tree view | |
let g:netrw_list_hide=netrw_gitignore#Hide() | |
let g:netrw_list_hide.=',\(^\|\s\s\)\zs\.\S\+' | |
command! MakeTags !ctags -R . | |
set number | |
set cursorline | |
set showmatch | |
set incsearch | |
set hlsearch | |
filetype plugin indent on | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
let mapleader="," | |
set guifont=Monaco:h12 | |
call plug#begin('~/.vim/plugged') | |
Plug 'ensime/ensime-vim' | |
Plug '[email protected]:ctrlpvim/ctrlp.vim.git' | |
call plug#end() | |
let ensime_server_v2=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment