Compare commits

...

2 commits

Author SHA1 Message Date
Rodolphe Houdas 827ac83773 Adding README.md 2020-07-25 02:05:52 +02:00
Rodolphe Houdas 3305b540f6 Updating vscode settings for emoji support 2020-07-25 02:05:01 +02:00
2 changed files with 30 additions and 2 deletions

27
README.md Normal file
View file

@ -0,0 +1,27 @@
# **~/.** dotfiles
My collection of dotfiles, to be used with `stow`
- [:truck: How to get](#-how-to-get)
- [:checkered_flag: How to use](#-how-to-use)
## :truck: How to get
I like to put it in an hidden folder. Assuming you're in your home folder:
```bash
git clone https://forge.lunai.re/rodolphe/dotfiles.git .dotfiles
```
## :checkered_flag: How to use
Assuming you're in the `.dotfiles` folder (`cd ~/.dotfiles`):
```bash
# Install the .zshrc
stow zsh
# Install the .gitconfig
stow git
# Install VS Code config
stow vscode
```

View file

@ -1,6 +1,6 @@
{
"editor.fontLigatures": true,
"editor.fontFamily": "'Fira Code'",
"editor.fontFamily": "'Fira Code', 'Noto Color Emoji'",
"workbench.iconTheme": "material-icon-theme",
"editor.rulers": [
80,
@ -15,5 +15,6 @@
"workbench.settings.enableNaturalLanguageSearch": false,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"workbench.enableExperiments": false
"workbench.enableExperiments": false,
"markdown.preview.fontFamily": "-apple-system, BlinkMacSystemFont, 'Segoe WPC', 'Segoe UI', system-ui, 'Ubuntu', 'Droid Sans', sans-serif,'Noto Color Emoji'"
}