Anton Shestakov <av6@dwimlabs.net>, Tue, 02 Aug 2016 12:04:41 +0800
.vimrc: remove python-mode config
.vimrc
Permissions: -rw-r--r--
execute pathogen#infect
()set wildmode=list:longest
set sessionoptions-=options " do not store global and local values in a session set sessionoptions-=folds
" do not store folds set nowrap " don't automatically wrap on load set textwidth=79 " width of document (used by gd) set formatoptions-=t " don't automatically wrap text when typing set listchars=tab:
>-,trail:·
,nbsp:⍽
set number " show line numbers set laststatus=2 " always show status line set ttimeoutlen=0 " eliminate delay after <ESC> highlight ColorColumn ctermbg
=233 map
<Leader
>n :
bprevious<CR
>noremap <expr
> <silent> <Home
> col('.') == match(getline
('.'),'\S')+1 ?
'0' :
'^' imap
<silent> <Home
> <C
-O
><Home
>nnoremap <C
-Up
> :move .
-2<CR
> nnoremap <C
-Down
> :move .
+1<CR
> vnoremap <C
-Up
> :move '
<-2<CR
>gv
vnoremap <C
-Down
> :move '
>+1<CR
>gv
imap
<C
-Down
> <C
-O
><C
-Down
>nnoremap <F3
> :
setlocal list! list?
<CR
> nnoremap <F4
> :
setlocal cursorcolumn! cursorcolumn?
<CR
> filetype plugin indent
on let g:airline_left_sep
='' let g:airline_right_sep
='' let g:airline_theme
='powerlineish' let g:ctrlp_max_height
=30 let g:ctrlp_custom_ignore
='\v[\/]venv$' let g:syntastic_check_on_open
=1 let g:syntastic_auto_loc_list
=1 let g:syntastic_enable_signs
=1 let g:syntastic_enable_highlighting
=1 let g:syntastic_html_checkers
=[
"jshint"]
let g:syntastic_html_jshint_exec
="~/node_modules/jshint/bin/jshint" let g:syntastic_python_checkers
=[
"pyflakes"]
let g:syntastic_javascript_checkers
=[
"jshint"]
let g:syntastic_javascript_jshint_exec
="~/node_modules/jshint/bin/jshint"