This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{ | |
"id": "view", | |
"children": [{ | |
"id": "layout", | |
"children": [{ | |
"command": "set_layout", | |
"caption" : "Custom: 3 Pane", | |
"mnemonic": "C", | |
"args": { | |
"cols": [0.0, 0.5, 1.0], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"AdvancedNewFile", | |
"DocBlockr", | |
"GitGutter", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Usage: dockerNS <name-of-Docker-container> | |
dockerNS() { | |
declare -r dockerName=$1 | |
declare -r containerPID=`docker inspect --format "{{ .State.Pid }}" $dockerName` | |
sudo nsenter --target "$containerPID" --mount --uts --ipc --net --pid | |
} | |
alias dockerNS=dockerNS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"always_show_minimap_viewport": true, | |
"auto_complete": true, | |
"auto_match_enabled": true, | |
"bold_folder_labels": true, | |
"close_windows_when_empty": false, | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Palenight.tmTheme", | |
"detect_indentation": true, | |
"font_face": "Fira Code", | |
"font_options": |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
setxkbmap us -variant colemak | |
xmodmap -e 'keycode 66 = BackSpace' -e 'clear Lock' | |
xset r 66 |
NewerOlder