Skip to content

Instantly share code, notes, and snippets.

@jborza
Last active June 26, 2020 08:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jborza/b1c1ac4991d81a9c724883f232905524 to your computer and use it in GitHub Desktop.
Save jborza/b1c1ac4991d81a9c724883f232905524 to your computer and use it in GitHub Desktop.
my .vimrc
syntax on
filetype plugin indent on
" expand tab 2 spaces
set expandtab
set tabstop=2
set softtabstop=2
" indenting with >
set shiftwidth=2
autocmd FileType c,cpp setlocal equalprg=clang-format
" map return key in insert mode to produce ctrl+y in (autocomplete) popup menu
inoremap <expr> <CR> pumvisible() ? "\<C-Y>" : "\<CR>"
" tab completion - tab on line beginning, else autocomplete
function! InsertTabWrapper()
let col = col('.') - 1
if !col || getline('.')[col - 1] !~ '\k'
return "\<tab>"
else
return "\<c-p>"
endif
endfunction
inoremap <expr> <tab> InsertTabWrapper()
inoremap <s-tab> <c-n>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment