Skip to content

Instantly share code, notes, and snippets.

@DarrylDias
Last active August 29, 2015 14:00
Show Gist options
  • Save DarrylDias/11316405 to your computer and use it in GitHub Desktop.
Save DarrylDias/11316405 to your computer and use it in GitHub Desktop.
vimrc.local
colorscheme molokai
let g:neocomplcache_disable_auto_complete = 1
set nospell
inoremap <expr><TAB> pumvisible() ? "\<C-n>" : <SID>check_back_space() ? "\<TAB>" : "\<C-x>\<C-u>"
function! s:check_back_space()"{{{
let col = col('.') - 1
return !col || getline('.')[col - 1] =~ '\s'
endfunction"}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment