Skip to content

Instantly share code, notes, and snippets.

@wizard-paso
wizard-paso / SublimeText2Memo.md
Last active July 30, 2021 23:02
Sublime Text 2 Windows版メモです

Sublime Text 2 memo (Windows)

最低限やっておくべきこと

インストール

portable versionでも良いが、インストールしていないと、縦に選択等のAltキーを使用するショートカットが使えなかった。

Sublime Package Controlのインストール

@pasela
pasela / README.md
Created August 22, 2012 06:18
mintty: A soft pastel color theme(xoria256) for mintty

A soft pastel color theme for mintty

This is ported version of color theme xoria256.

screenshot

Settings

Merge mintty-color-xoria256-rc into your .minttyrc

@mugyu
mugyu / gist:3394632
Created August 19, 2012 12:33
nyaos3kの動的プロンプトでsvnのurlやgitのbranch名をプロンプトに出力
-- svnの作業dirでurlを、そしてgitの作業dirでbranch名をプロンプトに出力
function nyaos.prompt(prompt)
local current = nyaos.eval('__pwd__')
if nyaos.access(current .. '/.svn/entries', 0) then
local svn_url = string.match(nyaos.eval('svn info --xml'), '<url>(.*)</url>', 1)
return true, '$e[36;40;1mSVN[' .. svn_url .. ']' .. prompt
else
local git_path = current
repeat
if nyaos.access(git_path .. '/.git', 0) then