-
Notifications
You must be signed in to change notification settings - Fork 54
setup texteditor environment
Allen Cheng edited this page Mar 30, 2016
·
32 revisions
下載位址:http://www.sublimetext.com/
2 或 3 都可以
http://wbond.net/sublime_packages/package_control/installation
之後可以透過 Cmd
+ Shift
+ p
叫出來選單。
Cmd
+ Shift
+ p
-> Install ...
Sublime Text 設定, Settings - User =>
{
"ensure_newline_at_eof_on_save": true,
"tab_size": 2,
"show_full_path": true,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true
}
設定完成,即可:
- 自動把 tab 轉成 2 個半型空白
- 自動砍掉多餘的行尾空白 (trailing space)
- 自動在檔案最後一行加上換行
- 顯示完整路徑名稱
Ctrl
+ Cmd
+ k
自動對 Ruby 縮排
或是 sdlong 修改版的
Cmd
+ Shift
+ p
-> Install ...
選擇 Solarized Theme 佈景安裝。再透過 Preferences
-> Color Scheme
,換成 Solarize 布景
指令:
用 bash: (底下是一整行的指令,只是被網頁斷行)
echo "alias subl="\"/Applications/Sublime\\ Text\\ 2 .app/Contents/SharedSupport/bin/subl\""" >> ~/.bashrc
用 zsh: (底下是一整行的指令,只是被網頁斷行)
echo "alias subl="\"/Applications/Sublime\\ Text\\ 2.app/Contents/SharedSupport/bin/subl\""" >> ~/.zshrc
指令:
用 bash: (底下是一整行的指令,只是被網頁斷行)
echo "alias subl="\"/Applications/Sublime\\ Text.app/Contents/SharedSupport/bin/subl\""" >> ~/.bashrc
用 zsh: (底下是一整行的指令,只是被網頁斷行)
echo "alias subl="\"/Applications/Sublime\\ Text.app/Contents/SharedSupport/bin/subl\""" >> ~/.zshrc
然後重開終端機即可使用