Guest User

Untitled

a guest
Feb 19th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. "show existing tab with 4 spaces"
  2. filetype plugin indent on
  3.  
  4. "when indenting with '>' use 4 spaces width"
  5. set tabstop=4
  6.  
  7. "on pressing tab insert 4 spacesi"
  8. set shiftwidth=4
  9.  
  10. "Using the clipbard as the default register"
  11. set clipboard=unnamedplus
  12.  
  13. "Show line numbers"
  14. set number
  15.  
  16. "colorscheme molokai"
  17. colorscheme molokai
  18.  
  19. "clang format - key bind to Ctrl-K"
  20. map <C-K> :py3f /home/oz/llvm/tools/clang/tools/clang-format/clang-format.py<cr>
  21. imap <C-K> <c-o>:py3f /home/oz/llvm/tools/clang/tools/clang-format/clang-format.py<cr>
  22.  
  23. "clang format - format on save"
  24. function! Formatonsave()
  25. let l:formatdiff = 1
  26. py3f ~/llvm/tools/clang/tools/clang-format/clang-format.py
  27. endfunction
  28. autocmd BufWritePre *.h,*.cc,*.cpp call Formatonsave()
Add Comment
Please, Sign In to add comment