Skip to content

Instantly share code, notes, and snippets.

View mknxdev's full-sized avatar

Paul Guzda (Mekkanix) mknxdev

View GitHub Profile
@mknxdev
mknxdev / keybindings.json
Created November 16, 2017 13:21
VS Code - Key Bindings
[
{
"key": "ctrl+[Period]",
"command": "editor.action.commentLine",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+[Period]",
"command": "-editor.action.commentLine",
"when": "editorTextFocus && !editorReadonly"
@mknxdev
mknxdev / settings.json
Created November 16, 2017 13:20
VS Code - Preferences
{
// Editor
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.scrollBeyondLastLine": false,
"editor.fontSize": 12,
"editor.fontFamily": "Monaco-Linux, 'DejaVu Sans Mono'",
"editor.renderIndentGuides": false,
"editor.tabCompletion": false,
"editor.minimap.showSlider": "always",
[
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{ "keys": ["ctrl+t"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
{ "keys": ["ctrl+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
{ "keys": ["ctrl+:"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+:"], "command": "toggle_comment", "args": { "block": true } },
@mknxdev
mknxdev / Preferences.sublime-settings
Last active December 12, 2016 10:51
Sublime Text Preferences
{
"always_show_minimap_viewport": false,
"auto_complete": true,
"auto_complete_selector": "source, text",
"auto_complete_commit_on_tab": true,
"bold_folder_labels": true,
"color_scheme": "Packages/User/SublimeLinter/base16-eighties.dark (SL).tmTheme",
"detect_indentation": false,
"draw_minimap_border": true,
"ensure_newline_at_eof_on_save": true,
@mknxdev
mknxdev / Package Control.sublime-settings
Last active July 6, 2017 12:48
Sublime Text Packages
{
"bootstrapped": true,
"in_process_packages":
[
],
"installed_packages":
[
"ApacheConf.tmLanguage",
"DocBlockr",
"Git",
@mknxdev
mknxdev / .gitconfig
Last active December 4, 2015 08:59
GitConfig
[user]
email = paul.guzdariviere@djit.fr
name = pguzda
[alias]
st = status
ci = commit
cia = commit --amend
co = checkout
br = branch