Skip to content

Instantly share code, notes, and snippets.

View tarhashi's full-sized avatar

TAKAHASHI Masaki tarhashi

  • NaviPlus Co., Ltd.
  • Saitama, Japan
View GitHub Profile
# Allow utf-8
setw -g utf8 on
set -g status-utf8 on
bind r source-file ~/.tmux.conf ¥; display-message "Reload Config!"
# vi key-bind
set-window-option -g mode-keys vi
unbind p
@tarhashi
tarhashi / dot.vimrc
Last active December 15, 2015 23:59
set nocompatible
filetype off
" NeoBundle
if has('vim_starting')
set runtimepath+=~/.vim/bundle/neobundle.vim
call neobundle#rc(expand('~/.vim/bundle'))
endif
" originalrepos on github
var wmp = new ActiveXObject("WMPlayer.OCX");
var cdroms = wmp.cdromCollection;
for(var i = 0; i < cdroms.count; ++i) {
cdroms.item(i).eject();
}
@tarhashi
tarhashi / vim73build-helper.sh
Created July 5, 2012 07:53
vim7.3 build helper
#!/bin/sh
wget http://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2
tar xf vim-7.3.tar.bz2
mkdir vim73/patches
cd vim73/patches
wget ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.*
cd ..
cat patches/7.3.* | patch -p0