From a49c790125551faa6092990bdd0be89e4c9e9d2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Fri, 25 Nov 2016 20:05:15 +0100 Subject: [PATCH] Add VSCode settings file --- .config/Code/User/settings.json | 11 +++++++++++ common/configure_fresh_system | 1 + 2 files changed, 12 insertions(+) create mode 100644 .config/Code/User/settings.json diff --git a/.config/Code/User/settings.json b/.config/Code/User/settings.json new file mode 100644 index 00000000..8f0484ba --- /dev/null +++ b/.config/Code/User/settings.json @@ -0,0 +1,11 @@ +{ + "window.zoomLevel": 1, + "extensions.autoUpdate": true, + "editor.cursorStyle": "block", + "rust.rustLangSrcPath": "/home/cyryl/dev/rust/src", + "rust.racerPath": "/home/cyryl/.cargo/bin/racer", + "rust.rustfmtPath": "/home/cyryl/.cargo/bin/rustfmt", + "rust.rustsymPath": "/home/cyryl/.cargo/bin/rustsym", + "rust.cargoPath": "/home/cyryl/.cargo/bin/cargo", + "rust.cargoHome": "/home/cyryl/.cargo/" +} \ No newline at end of file diff --git a/common/configure_fresh_system b/common/configure_fresh_system index 137ba01f..36ed7fe7 100755 --- a/common/configure_fresh_system +++ b/common/configure_fresh_system @@ -55,6 +55,7 @@ ln -vfs "$DIR/.config/autostart/redshift-gtk.desktop" ~/.config/autostart/ mkdir -p ~/.config/vdirsyncer/ ln -vfs "$DIR/.config/vdirsyncer/config" ~/.config/vdirsyncer/ ln -vfs "$DIR/.config/redshift.conf" ~/.config/redshift.conf +ln -vfs "$DIR/.config/Code/User/settings.json" ~/.config/Code/User/settings.json source ~/.setenv