-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
♻️ Replace flake8 with ruff in Sublime
- Loading branch information
Showing
8 changed files
with
36 additions
and
22 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -314,7 +314,7 @@ Note: first open Chrome for the first time | |
- Use built-in keychain and app password from above, and add a Mac specific global gitignore: | ||
```bash | ||
git config --global user.name "ddelange" | ||
git config --global user.email "[email protected]" | ||
git config --global user.email "14880945+[email protected]" # fetch this from https://github.com/settings/emails | ||
git config --global credential.helper osxkeychain | ||
|
||
# EITHER | ||
|
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,12 @@ | ||
[ | ||
{ | ||
"keys": ["primary+alt+p"], | ||
"command": "lsp_code_actions", | ||
"context": [{"key": "lsp.session_with_capability", "operand": "codeActionProvider"}] | ||
}, | ||
{ | ||
"keys": ["primary+alt+o"], | ||
"command": "lsp_format_document", | ||
"context": [{"key": "lsp.session_with_capability", "operand": "documentFormattingProvider | documentRangeFormattingProvider"}] | ||
}, | ||
] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"extensions": | ||
[ | ||
"md" | ||
"md", | ||
], | ||
"mde.list_indent_bullets": | ||
[ | ||
"-" | ||
], | ||
"color_scheme": "Packages/MarkdownEditing/MarkdownEditor.tmTheme", | ||
/*"color_scheme": "MarkdownEditor.sublime-color-scheme",*/ | ||
"draw_centered": false, | ||
"word_wrap": false, | ||
} |
This file contains 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
This file contains 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