-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ebcd1e3
commit d4e364d
Showing
11 changed files
with
162 additions
and
58 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
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?xml version='1.0'?> | ||
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> | ||
<fontconfig> | ||
<!-- setting up emoji fonts as weak binding --> | ||
<match> | ||
<test name="family"><string>sans-serif</string></test> | ||
<edit name="family" mode="prepend" binding="weak"> | ||
<string>Noto Color Emoji</string> | ||
</edit> | ||
</match> | ||
<match> | ||
<test name="family"><string>serif</string></test> | ||
<edit name="family" mode="prepend" binding="weak"> | ||
<string>Noto Color Emoji</string> | ||
</edit> | ||
</match> | ||
<match> | ||
<test name="family"><string>monospace</string></test> | ||
<edit name="family" mode="prepend" binding="weak"> | ||
<string>Noto Color Emoji</string> | ||
</edit> | ||
</match> | ||
<match> | ||
<test name="family"><string>Apple Color Emoji</string></test> | ||
<edit name="family" mode="prepend" binding="weak"> | ||
<string>Noto Color Emoji</string> | ||
</edit> | ||
</match> | ||
</fontconfig> | ||
|
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
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# Visual Studio Code | ||
|
||
- config | ||
- on linux `~/.config/Code` | ||
- on windows `~/AppData/Roaming/Code/` | ||
|
||
- `User` directory contains the config | ||
|
||
## Extensions List | ||
|
||
- C/C++ (Microsoft) | ||
- Python (Microsoft) | ||
|
||
### tex | ||
|
||
- Latex Workshop | ||
- <https://github.com/James-Yu/LaTeX-Workshop> | ||
|
||
### Shell Scripting | ||
|
||
- ShellCheck | ||
- <https://github.com/vscode-shellcheck/vscode-shellcheck> | ||
- ShellMan | ||
- <https://github.com/yousefvand/shellman> | ||
|
||
### Formatters | ||
|
||
- Prettier | ||
- shell-format | ||
- <https://github.com/foxundermoon/vs-shell-format> | ||
|
||
### Themes UI | ||
|
||
- indent rainbow | ||
- <https://github.com/oderwat/vscode-indent-rainbow> | ||
|
||
### Markdown | ||
|
||
- <https://github.com/markmap/markmap-vscode> | ||
- <https://github.com/DavidAnson/vscode-markdownlint> | ||
- <https://github.com/telesoho/vscode-markdown-paste-image> | ||
- <https://github.com/yzhang-gh/vscode-markdown.git> | ||
|
||
- you can style the headings individually using these | ||
|
||
```json | ||
"editor.tokenColorCustomizations": { | ||
"textMateRules": [ | ||
{ | ||
"scope": "heading.1.markdown entity.name.section.markdown, heading.1.markdown punctuation.definition.heading.markdown", | ||
"settings": { | ||
"foreground": "#de6a73", | ||
"fontStyle": "bold" | ||
} | ||
}, | ||
{ | ||
"scope": "heading.2.markdown entity.name.section.markdown, heading.2.markdown punctuation.definition.heading.markdown", | ||
"settings": { | ||
"foreground": "#c678dd", | ||
"fontStyle": "bold" | ||
} | ||
}, | ||
{ | ||
"scope": "heading.3.markdown entity.name.section.markdown, heading.3.markdown punctuation.definition.heading.markdown", | ||
"settings": { | ||
"foreground": "#98c379", | ||
"fontStyle": "bold" | ||
} | ||
}, | ||
{ | ||
"scope": "heading.4.markdown entity.name.section.markdown, heading.4.markdown punctuation.definition.heading.markdown", | ||
"settings": { | ||
"foreground": "#e5c07a", | ||
"fontStyle": "bold" | ||
} | ||
} | ||
] | ||
``` |