Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bensheldon/dotfiles
All the shell that's fit to bash
https://github.com/bensheldon/dotfiles
Last synced: about 1 month ago
JSON representation
All the shell that's fit to bash
- Host: GitHub
- URL: https://github.com/bensheldon/dotfiles
- Owner: bensheldon
- Created: 2013-04-11T21:58:58.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-12-06T02:20:38.000Z (11 months ago)
- Last Synced: 2024-05-02T06:08:24.309Z (7 months ago)
- Language: Shell
- Homepage:
- Size: 39.1 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Dotfiles
========`bootstrap.sh` script courtesty of [mathiasbynens](https://github.com/mathiasbynens/dotfiles).
Applications
------------### SSH
Don't forget to add all the custom keys with `$ ssh-add -K path/to/my_key`
Add this to `~/.ssh/config` to improve timeout behavior and prevent frozen consoles:
```
ServerAliveInterval 30
ServerAliveCountMax 4
```### Sublime Text
```
{
"auto_indent": true,
"ensure_newline_at_eof_on_save": true,
"ignored_packages":
[
"Vintage"
],
"tab_size": 2,
"trailing_spaces_highlight_color": "comment",
"translate_tabs_to_spaces": true,
"trim_automatic_white_space": true,
"trim_trailing_white_space_on_save": true
}
```### iTerm 2
To get Option-Arrow move by word that the OSX Terminal provides:
Preferences -> Profiles -> Keys
```
Keyboard Shortcut: Option <-
Action: Send Escape Sequence
Esc+: bKeyboard Shortcut: Option ->
Action: Send Escape Sequence
Esc+: f
```