1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# My Mac Configuration
I'm documenting this for personal use. Shell settings, vim settings, commonly used applications, et cetera...
### to do
* migrate Google Chrome bookmarks to new machine
### Commonly used applications
* homebrew - `key-repeat: 50ms delay-until-repeat: 300ms` necessary for procuring shell applications
* karabiner - increase your Mac's key repeat settings beyond the default range
* spectacle - resize and move your windows with keyboard shortcuts
* iterm - substitute for Terminal application
* oh my zsh - z-shell for Mac
* sublime text - text editor
* webstorm - web IDE
* docker - for running containers and virtual environments
* mou - markdown editor
### Sublime Text settings
* SublimeLinter - lints files
* SublimeLinter-contrib-eslint - lints using eslint
* Oceanic Next Theme - buffer and editor theme
* Vintageous - extended Vim key-binding support
* Vintageous-Origami - extended Vintageous support for window pane mgt (ctrl + w) `"vintageous_use_ctrl_keys": true`
* Origami - dep. of Vintageous-Origami (see above)
* babel-sublime - supports JSNext features
* SublimeCodeIntel - robust autocomplete engine
#### Sublime preferences (user)
```
{
"color_scheme": "Packages/User/SublimeLinter/Oceanic Next (SL).tmTheme",
"font_face": "Source Code Pro",
"font_size": 12,
"ignored_packages":
[
"Vintage",
"VintageousOrigami"
],
"tab_size": 2,
"theme": "Oceanic Next.sublime-theme",
"translate_tabs_to_spaces": true,
"vintage_start_in_command_mode": true,
"vintageous_use_ctrl_keys": true
}
```
#### Sublime key-bindings (user)
```
[
{ "keys": ["super+\\"], "command": "toggle_side_bar" },
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" }
]
```
### other notes
* add Adobe Source Code Pro font for shell and text editors
* increase trackpad / mouse speed to maximum levels
|