From 885603c7e69a7c8c3aac555402bf835eddf93601 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Tue, 31 Oct 2017 14:38:46 +0000 Subject: [PATCH] VSCode support on Mac (#144) * Better shel in VSCode on Mac * Support RLS on Mac --- .config/Code/User/settings.json.mac | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/.config/Code/User/settings.json.mac b/.config/Code/User/settings.json.mac index 2cdb8088..80997ced 100644 --- a/.config/Code/User/settings.json.mac +++ b/.config/Code/User/settings.json.mac @@ -2,10 +2,17 @@ "window.zoomLevel": 1, "extensions.autoUpdate": true, "editor.cursorStyle": "block", - "rust.rustLangSrcPath": "/Users/cyryl/dev/rust/src", - "rust.racerPath": "/Users/cyryl/.cargo/bin/racer", - "rust.rustfmtPath": "/Users/cyryl/.cargo/bin/rustfmt", - "rust.rustsymPath": "/Users/cyryl/.cargo/bin/rustsym", - "rust.cargoPath": "/Users/cyryl/.cargo/bin/cargo", - "rust.cargoHome": "/Users/cyryl/.cargo/" + "vim.disableAnnoyingNeovimMessage": true, + "terminal.integrated.shell.osx": "/usr/local/bin/bash", + "rust.cargoPath": "/Users/cyplo/.cargo/bin/cargo", + "rust.cargoHomePath": "/Users/cyplo/.cargo", + "rust.racerPath": "/Users/cyplo/.cargo/bin/racer", + "rust.rustfmtPath": "/Users/cyplo/.cargo/bin/rustfmt", + "rust.rustsymPath": "/Users/cyplo/.cargo/bin/rustsym", + "rust.rustLangSrcPath": "/Users/cyplo/dev/rust/src", + "rust.mode": "rls", + "rust.rls": { + "executable": "/Users/cyplo/.cargo/bin/rls", + "useRustfmt": true + } }