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
Show hidden characters
https://qvault.io/javascript/simple-setup-vue-linting-in-vs-code/ | |
yarn add eslint --dev | |
yarn add eslint-plugin-import --dev | |
yarn add eslint-plugin-node --dev | |
yarn add eslint-plugin-promise --dev | |
yarn add eslint-plugin-standard --dev | |
yarn add eslint-plugin-vue --dev | |
yarn add @vue/eslint-config-standard --dev | |
yarn add babel-eslint --dev |
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
<?xml version="1.0" ?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<match target="font"> | |
<edit name="hinting" mode="assign"> | |
<bool>true</bool> | |
</edit> | |
<edit name="autohint" mode="assign"> | |
<bool>false</bool> | |
</edit> |
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
{ | |
"editor.fontSize": 16, | |
"editor.fontFamily": "'Monaco'", | |
"python.pythonPath": "/opt/anaconda3/envs/${env:CONDA_DEFAULT_ENV}/bin/python", | |
"terminal.integrated.fontFamily": "'Monaco'", | |
"terminal.integrated.fontSize": 16, | |
"terminal.integrated.lineHeight" : 1.2 | |
} |
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
[general] | |
theme=deepin | |
opacity=0.97672698457362284 | |
font=Inconsolata | |
font_size=12 | |
[shortcut] | |
copy=Ctrl + Shift + c | |
paste=Ctrl + Shift + v | |
open=Ctrl + Shift + x |
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
**Poppy** | |
https://kayover.deviantart.com/art/Poppy-OS-X-1-2-3-Revieve-Developer-Preview-5-697178047 | |
https://www.opendesktop.org/p/1184644/ |
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
What ive done manually was delete all the files name 'alias' in /etc/fonts/ configurations. | |
Import all my fonts from Mac OS X and Windows | |
Set my fonts to grayscale and no hinting. | |
Include the following in mt ~/.fonts.conf https://gist.github.com/dannymichel/7103077 |