Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. set fileencodings=utf-8,ucs-bom,gb18030,gbk,gb2312,cp936
  2. set termencoding=utf-8
  3. set encoding=utf-8
  4. set shiftwidth=4
  5. set tabstop=4
  6. set expandtab
  7. set autoindent
  8. set number
  9. "set relativenumber
  10. set hlsearch
  11. filetype plugin indent on
  12. autocmd FileType lua setlocal sta sw=4 sts=4
  13. autocmd FileType python setlocal sta ts=8 sw=4 sts=8
  14. autocmd FileType erlang setlocal sta ts=4 sw=4 sts=4
  15.  
  16. "ctrlp plugin
  17. set runtimepath^=~/.vim/bundle/ctrlp.vim
  18.  
  19. "tagbar plugin
  20. nmap <F6> :TagbarToggle<CR>
  21. let g:tagbar_autofocus = 1 "自动高亮代码所在Tag区域
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement