Last active
February 9, 2025 11:17
-
-
Save Saharayama/f7db2e249b82144c98a729686c31b9d5 to your computer and use it in GitHub Desktop.
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
```shell:.inputrc | |
"\C-xb": "\eb\"\ef\"" | |
"\C-xn": "\eb'\ef'" | |
``` | |
```python:ipython_config.py | |
c.TerminalInteractiveShell.shortcuts = [ | |
{ | |
"command": "IPython:auto_match.parenthesis", | |
"new_keys": ["c-t"], | |
"create": True, | |
}, | |
{ | |
"command": "IPython:auto_match.braces", | |
"new_keys": ["c-o"], | |
"create": True, | |
}, | |
{ | |
"command": "IPython:auto_match.brackets", | |
"new_keys": ["c-p"], | |
"create": True, | |
}, | |
{ | |
"command": "IPython:auto_match.double_quote", | |
"new_keys": ["c-b"], | |
"create": True, | |
}, | |
{ | |
"command": "IPython:auto_match.single_quote", | |
"new_keys": ["c-n"], | |
"create": True, | |
} | |
] | |
c.InteractiveShell.colors = "Linux" | |
c.AliasManager.user_aliases = [ | |
("la", 'ls -lAhtr --time-style="+%Y-%m-%d" --color=auto'), | |
("las", 'ls -lAhtr --time-style="+%Y-%m-%d %H:%M:%S" --color=auto'), | |
] | |
```json:vscode/settings.json | |
"editor.experimentalEditContextEnabled": true | |
"git.blame.editorDecoration.enabled": true, | |
"git.blame.statusBarItem.enabled": true, | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment