vim awesome
http://vimawesome.com/
Find equipment for you vim.

Discoholic 🪩
Three Goblin Art
he wasn't even looking at me and he found me
Sweet Seals For You, Always

#extradirty
One Nice Bug Per Day
will byers stan first human second
Show & Tell

oozey mess
DEAR READER
"I'm Dorothy Gale from Kansas"

⁂
Claire Keane
Lint Roller? I Barely Know Her
ojovivo

roma★
Not today Justin

Janaina Medeiros
taylor price

izzy's playlists!
seen from South Africa
seen from United States
seen from Germany
seen from United States
seen from Congo - Brazzaville
seen from Congo - Brazzaville
seen from United States

seen from Malaysia
seen from United States

seen from United States
seen from United States
seen from United States
seen from United States
seen from United States
seen from United States
seen from United States
seen from United States

seen from United States
seen from United States
seen from United States
@anglucas
vim awesome
http://vimawesome.com/
Find equipment for you vim.
工具小私柜
Krita 免费画图工具
lmms 专业音乐制作工具
fontforge 字体制作工具
bfxr 小巧的音效制作工具
makehuman 3D人体制作工具
GrafX2 像素画图工具
yobi3d 在线3d模型搜索
sketchup 建场景超牛工具
awesomebump 光影效果图制作
sunvox 跨平台音乐制作工具
vagante之2个屌丝游侠的一生
记录了操(手)作(残)帝各种boss的打法以及各种局面的应对.
http://visualgo.net
使用homebrew为该安装的软件在/Applications建立快捷方式
brew unlink <name> && brew link <name>
brew linkapps
Play dwarf fortress inside mac, fix window size option.
init.txt:
PRINT_MODE:FRAME_BUFFER
看看你什么命令用的最多.
history | awk '{CMD[$2]++;count++;}END { for (a in CMD)\ print CMD[a] " " CMD[a]/count*100 "% " a;}' | grep -v "./" \ | column -c3 -s " " -t | sort -nr | nl | head -n10
.xvimrc
set ignorecase set smartcase set hlsearch
nmap ;<cr> /≥∞≤<cr> nmap ;ww :w<cr> nmap ;qq :q<cr>
MAC安装macvim+终端vim
让VIM支持lua python
brew install macvim --with-python --with-lua --override-system-vim
brew linkapps
mac上好用的软件
acorn 小巧类似PS的画图工具
android file transfer 安卓设备USB连接工具
homebrew 类似aptget的软件管理工具
The Unarchiver 免费解包工具
xvim xcode的VIM插件
AppCleaner 免费小巧的清理工具
Licecap Gif录像工具
听说能看到过去.
让mac上的git补全
执行
curl https://raw.github.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash
在.bash.profile加上 source ~/.git-completion.bash
Change pages styling according to the user's preferences.
背景: BEE3C4 (护眼色)
字体: 000000 (黑色)
下面的色只需调深一点.
PS:用这个插件在打开地图网页的时候可能会不显示, 可以点击选择此网页或域不使用变色.
linux上的qq(lwqq)
debian上安装:
sudo add-apt-repository ppa:lainme/pidgin-lwqq
sudo apt-get update
sudo apt-get install pidgin-lwqq
sudo apt-get install pidgin
luakit,dwb 两个vi-like简洁的浏览器
操作几乎跟vimperator一模一样, 而且直接能用lua写脚本和设置文件, 感觉不错.
还有一个更简洁的叫dwb, 大家也可以试试, 它都不用装webkit, 小而精.
linux bg,fg,jobs与后台运行相关命令
ctrl + z 可以将一个正在前台执行的命令放到后台,并且暂停 jobs 查看当前有多少在后台运行的命令 fg 将后台中的命令调至前台继续运行
使用方法 :fg 序列号
bg 将一个在后台暂停的命令,变成继续执行
设置lubuntu的截图快捷键
lubuntu自带scrot, 所以我们只需要设置下快捷键.
vi ~/.config/openbox/lubuntu-rc.xml
加上以下代码
<keybind key="C-A-a"> <action name="Execute"> <command>scrot -s -b -q 1 -e 'mv $f ~/图片/'</command> </action> </keybind>
然后openbox-lubuntu --restart