preferences.vim
1 set encoding=utf-8 2 set number 3 syntax enable 4 set clipboard=unnamed 5 set clipboard+=ideaput 6 set cursorline 7 set go=a 8 set mouse=a 9 set nohlsearch 10 set wildmenu 11 set breakindent 12 set formatoptions=l 13 set splitbelow 14 set splitright 15 set hidden 16 "set showbreak=.... 17 set ideajoin " Use Idea to join lines smartly 18 19 " sets system clipboard as the unnamed clipboard 20 set clipboard+=unnamed 21 22 set visualbell 23 set idearefactormode=keep 24 25 " Splits and tabs 26 set splitbelow 27 set splitright 28 29 " Indenting 30 set breakindent 31 set showbreak=.... 32 33 " Search 34 set hlsearch