This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
/* | |
* UI関係 | |
*/ | |
// カラー&スキーマ | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", // カラー | |
"theme": "Soda Dark.sublime-theme", // スキーマ | |
// カーソルのスタイル ("smooth", "phase", "blink", "wide", "solid") | |
"caret_style": "smooth", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# tmux内のvimで256色を設定する方法 | |
#まず | |
#tmux kill-server でtmuxのセッション?をすべて削除 | |
#このファイルを~/.tmux.conf として設置 | |
#シェルがzshでない場合は | |
#設定内部で使用するシェルは一番下に記載する | |
#作成したシェルを~/bin に作成してパスを通す | |
#最後に tmux -f ~/.tmux.conf で設定ファイルを読み込ませて起動すると設定が反映される | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "keys": ["ctrl+tab"], "command": "next_view" }, | |
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" }, | |
{ "keys": ["ctrl+pagedown"], "command": "next_view_in_stack" }, | |
{ "keys": ["ctrl+pageup"], "command": "prev_view_in_stack" }, | |
{ | |
"command": "jump_back", | |
"keys": ["ctrl+,"] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"cygwin-vim用最低限の設定 | |
let &t_ti.="e[1 q" "カーソルを調整 | |
let &t_SI.="e[5 q" "カーソルを調整 | |
let &t_EI.="e[1 q" "カーソルを調整 | |
let &t_te.="e[0 q" "カーソルを調整 | |
set backspace=indent,eol,start "Backspaceを調整 | |
"---mysetting--- | |
syntax on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- protected function mock --> | |
<snippet> | |
<content><![CDATA[ | |
private function ${1:}() | |
{ | |
} | |
]]></content> | |
<!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
<tabTrigger>private</tabTrigger> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"sublimelinter_gutter_marks": true, | |
"sublimelinter_wrap_find": true, | |
"sublimelinter_executable_map": | |
{ | |
//mac | |
"php": "/usr/bin/php", | |
//windows |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source "http://rubygems.org" | |
gem "rails", "4.0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# $1 phpの文法チェックをしたいディレクトリ | |
#http://kaworu.jpn.org/kaworu/2007-11-17-2.php | |
flg=0 | |
phpsyntaxcheck() | |
{ | |
for i in `find -E "$1" -regex '.*\.(php|inc)' ` | |
do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install play |
OlderNewer