Created
March 16, 2019 11:46
-
-
Save OpakAlex/6d38f4dac0fa605a99bc0f4b061ada40 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
set nobackup | |
set nowritebackup | |
set noswapfile | |
set showcmd | |
set number | |
set incsearch | |
set laststatus=2 | |
set splitbelow | |
set splitright | |
set ignorecase | |
set smartcase | |
set scrolloff=10 | |
set foldmethod=indent | |
set foldlevelstart=99 | |
set clipboard=unnamed | |
set statusline=%f\ %m | |
set showtabline=2 | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'gmarik/Vundle.vim' | |
" Plugin 'slim-template/vim-slim.git' | |
Bundle 'slime-lang/vim-slime-syntax.git' | |
Plugin 'tpope/vim-surround' | |
Plugin 'tpope/vim-endwise' | |
Plugin 'ervandew/supertab' | |
Plugin 'tpope/vim-fugitive' | |
Plugin 'romankuznietsov/vim-unimpaired' | |
Plugin 'tpope/vim-commentary' | |
Plugin 'tpope/vim-dispatch' | |
Plugin 'kien/ctrlp.vim' | |
Plugin 'tpope/vim-vinegar' | |
Plugin 'scrooloose/syntastic' | |
Plugin 'dNitro/vim-pug-complete' | |
Plugin 'digitaltoad/vim-jade' | |
Plugin 'oscarh/vimerl' | |
Plugin 'elixir-lang/vim-elixir' | |
Plugin 'vim-ruby/vim-ruby' | |
Plugin 'tpope/vim-rails' | |
Plugin 'tpope/vim-bundler' | |
Plugin 'pangloss/vim-javascript' | |
Plugin 'elzr/vim-json' | |
Plugin 'mustache/vim-mustache-handlebars' | |
Plugin 'rust-lang/rust.vim' | |
Plugin 'editorconfig/editorconfig-vim' | |
Plugin 'othree/es.next.syntax.vim' | |
Plugin 'mxw/vim-jsx' | |
Plugin 'leafgarland/typescript-vim' | |
call vundle#end() | |
syntax enable | |
filetype plugin indent on | |
syntax on | |
colorscheme custom | |
let g:ctrlp_map = '<leader>f' | |
let g:ctrlp_show_hidden = 1 | |
let g:ctrlp_use_caching = 0 | |
let g:ctrlp_user_command = ['.git', "cd %s && { git ls-files && git ls-files -o --exclude-standard; } | awk '{ print length(), $0 }' | sort -n | sed 's/^[^ ]* // ' | uniq"] | |
let g:vim_json_syntax_conceal = 0 | |
let g:SuperTabCompleteCase = 'match' | |
let g:commentary_map_backslash = 0 | |
let g:syntastic_mode_map = { "mode": "passive", | |
\ "active_filetypes": ["erlang"], | |
\ "passive_filetypes": [] } | |
function! StripTrailingWhite() | |
let l:winview = winsaveview() | |
silent! %s/\s\+$// | |
call winrestview(l:winview) | |
endfunction | |
function! ToggleColorColumn() | |
if &colorcolumn != '' | |
setlocal colorcolumn& | |
else | |
setlocal colorcolumn=120 | |
endif | |
endfunction | |
function! Indent() | |
let l:winview = winsaveview() | |
normal! gg=G | |
call winrestview(l:winview) | |
endfunction | |
function! EunitFile() | |
let l:modname = matchlist(@%, '\([^/]\+\)\.erl')[1] | |
exe "Start rebar eunit suite=" . l:modname | |
endfunction | |
function! ExunitFile() | |
exe "Start mix test " . @% | |
endfunction | |
function! RspecFile() | |
exe "Start bundle exec rspec " . @% | |
endfunction | |
function! RspecLine() | |
exe "Start bundle exec rspec " . @% . ":" . line(".") | |
endfunction | |
nnoremap <silent> <leader>c :call ToggleColorColumn()<CR> | |
nnoremap <silent> <leader>i :call Indent()<CR> | |
nnoremap <silent> <leader>h :set hlsearch!<CR> | |
nnoremap <leader>g :Ggrep<space> | |
vnoremap <leader>g y:Ggrep<space><C-R>" | |
nnoremap <leader>s :SyntasticReset<CR> | |
nnoremap \\ :CtrlPLine %<CR> | |
command! Json :%!python -m json.tool | |
augroup custom | |
au! | |
au BufWritePre * call StripTrailingWhite() | |
au FileType json,html,eruby,html.handlebars setl ts=2 sw=2 sts=2 et | |
au FileType ruby,haml,yaml,javascript setl ts=2 sw=2 sts=2 et | |
au FileType feature,cucumber setl ts=2 sw=2 sts=2 et | |
au FileType erlang setl ts=4 sw=4 sts=4 et commentstring=%\ %s | |
au Filetype ruby nnoremap <leader>l :call RspecLine()<CR> | |
au Filetype ruby nnoremap <leader>t :call RspecFile()<CR> | |
au Filetype erlang nnoremap <leader>t :call EunitFile()<CR> | |
au Filetype elixir nnoremap <leader>t :call ExunitFile()<CR> | |
autocmd FileType typescript :set makeprg=tsc | |
" autocmd BufNewFile,BufRead *.slime setlocal filetype=slim | |
augroup END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment