diff options
author | Mathias Bynens <mathias@qiwi.be> | 2012-08-13 12:21:17 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-08-13 12:21:17 +0200 |
commit | 48e4a044b089e4e8c3c53c56482ab704a98a05d6 (patch) | |
tree | ed82e929d80c8708c3b0063a1fb0ae8daa5d429e | |
parent | 29f6c9f1b1ed5682ae2f0f2cea028e496b459f25 (diff) | |
download | dotfiles-48e4a044b089e4e8c3c53c56482ab704a98a05d6.tar.gz dotfiles-48e4a044b089e4e8c3c53c56482ab704a98a05d6.tar.bz2 dotfiles-48e4a044b089e4e8c3c53c56482ab704a98a05d6.zip |
.osx: Add TextEdit settings
-rwxr-xr-x | .osx | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -361,7 +361,7 @@ defaults write com.apple.Safari "com.apple.Safari.ContentPageGroupIdentifier.Web defaults write NSGlobalDomain WebKitDeveloperExtras -bool true ############################################################################### -# Address Book, Dashboard, iCal, iTunes, Mail, and Disk Utility # +# Address Book, Dashboard, iCal, iTunes, Mail, TextEdit, and Disk Utility # ############################################################################### # Enable the debug menu in Address Book @@ -404,6 +404,12 @@ defaults write com.apple.mail AddressesIncludeNameOnPasteboard -bool false # Add the keyboard shortcut ⌘ + Enter to send an email in Mail.app defaults write com.apple.mail NSUserKeyEquivalents -dict-add "Send" "@\\U21a9" +# Use plain text mode for new TextEdit documents +defaults write com.apple.TextEdit RichText -int 0 +# Open and save files as UTF-8 in TextEdit +defaults write com.apple.TextEdit PlainTextEncoding -int 4 +defaults write com.apple.TextEdit PlainTextEncodingForWrite -int 4 + # Enable the debug menu in Disk Utility defaults write com.apple.DiskUtility DUDebugMenuEnabled -bool true defaults write com.apple.DiskUtility advanced-image-options -bool true |