Skip to content

Instantly share code, notes, and snippets.

@SkylerHu
SkylerHu / vimrc.txt
Last active January 25, 2023 06:19
vim的配置
syntax on
set ruler
set showcmd
set tabstop=4
set shiftwidth=4
set softtabstop=4
set expandtab
set nu
set hlsearch
set incsearch
@SkylerHu
SkylerHu / vim_plugin.md
Last active August 26, 2016 02:28
我的vim产检列表
  • Vundle.vim

  • AutoTag

  • Valloric/YouCompleteMe

  • Yggdroot/indentLine

  • nerdtree

  • vim-nerdtree-tabs

  • taglist.vim

  • vim-golang

  • syntastic

@SkylerHu
SkylerHu / switchysharp-rule-list.txt
Created September 23, 2016 06:56
switchysharp rule list
#BEGIN
[wildcard]
*://5i01.com/*
*://*.android.com/*
*://androidexample.com/*
*://*.appspot.com/*
*://*.asana.com/*
@SkylerHu
SkylerHu / clearpyc.py
Created October 20, 2016 17:26
清除当前/指定目录下所有pyc文件
#!/usr/bin/env python
# coding=utf-8
# Filename: cleanpyc.py
# Date:2011-03-26
import os
import fnmatch
import sys