Skip to content

Instantly share code, notes, and snippets.

__author__ = 'H1ac0k'
# demo1 展示线程的基本使用
# import threading
# import datetime
#
# class ThreadClass(threading.Thread):
# def run(self):
# now = datetime.datetime.now()
# print("%s says Hello world at time: %s" % (self.getName(), now))
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required