move vscode config to .vscode/README.md
This commit is contained in:
@@ -23,10 +23,6 @@
|
|||||||
- [Arch Guests](#arch-guests)
|
- [Arch Guests](#arch-guests)
|
||||||
- [Kubernetes](#kubernetes)
|
- [Kubernetes](#kubernetes)
|
||||||
- [VSCode](#vscode)
|
- [VSCode](#vscode)
|
||||||
- [Shell](#shell)
|
|
||||||
- [Fonts](#fonts)
|
|
||||||
- [Navigation](#navigation)
|
|
||||||
- [Extensions](#extensions)
|
|
||||||
- [Wireguard](#wireguard)
|
- [Wireguard](#wireguard)
|
||||||
- [Remote Desktop](#remote-desktop)
|
- [Remote Desktop](#remote-desktop)
|
||||||
- [Transmission](#transmission)
|
- [Transmission](#transmission)
|
||||||
@@ -471,73 +467,6 @@ cd visual-studio-code-bin
|
|||||||
makepkg -si
|
makepkg -si
|
||||||
```
|
```
|
||||||
|
|
||||||
### Shell
|
|
||||||
|
|
||||||
Edit settings.json
|
|
||||||
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"terminal.integrated.defaultProfile.linux": "zsh",
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Fonts
|
|
||||||
|
|
||||||
Intel One Mono is designed to be easily readable for developers.
|
|
||||||
|
|
||||||
<https://github.com/intel/intel-one-mono>
|
|
||||||
|
|
||||||
Download and extract the ttf.zip
|
|
||||||
|
|
||||||
```bash
|
|
||||||
mkdir ~/.local/share/fonts
|
|
||||||
rsync -av /path/to/download/*.ttf ~/.local/share/fonts/
|
|
||||||
```
|
|
||||||
|
|
||||||
Edit settings.json
|
|
||||||
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"editor.fontFamily": "Intel One Mono",
|
|
||||||
"editor.fontLigatures": true,
|
|
||||||
"terminal.integrated.fontFamily": "Intel One Mono",
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Navigation
|
|
||||||
|
|
||||||
The best navigation shortcut ever is alt+left and alt+right to move the cursor to it's
|
|
||||||
previous positions.
|
|
||||||
|
|
||||||
```json
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"key": "alt+left",
|
|
||||||
"command": "workbench.action.navigateBack",
|
|
||||||
"when": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"key": "alt+right",
|
|
||||||
"command": "workbench.action.navigateForward",
|
|
||||||
"when": ""
|
|
||||||
}
|
|
||||||
]
|
|
||||||
```
|
|
||||||
|
|
||||||
### Extensions
|
|
||||||
|
|
||||||
To save a list of installed extensions run:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
code --list-extensions >> vscode_extensions.txt
|
|
||||||
```
|
|
||||||
|
|
||||||
To install that list of extensions run:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
cat vscode_extensions.txt | xargs -L 1 code --install-extension
|
|
||||||
```
|
|
||||||
|
|
||||||
## Wireguard
|
## Wireguard
|
||||||
|
|
||||||
Wireguard requires `linux-headers`. If that isn't installed or is misconfigured your
|
Wireguard requires `linux-headers`. If that isn't installed or is misconfigured your
|
||||||
|
|||||||
Reference in New Issue
Block a user