VS Code配置Go语言开发环境
# 安装Visual Studio Code
brew cask install visual-studio-code
# 安装Go语言环境
brew install go
# 配置Go环境变量
echo 'export GOPATH="$HOME/go"' >> ~/.bash_profile
echo 'export PATH="$PATH:$GOPATH/bin"' >> ~/.bash_profile
source ~/.bash_profile
# 安装Go插件到Visual Studio Code
# 打开Visual Studio Code,然后在左侧的Extensions视图中搜索并安装以下插件:
# 1. Go by Microsoft(由微软提供的官方Go插件)
# 2. Code Runner
# 3. Material Theme(可选的主题插件)
# 4. Auto Import(自动导入包)
# 5. Dracula Official(可选的主题配色方案)
# 6. GitLens(Git supercharged)
# 7. GitHub Pull Requests(GitHub的拉取请求)
# 8. Import Cost(显示导入包的大小)
# 9. IntelliSense for CSS class names in HTML
# 10. TODO Highlight(高亮显示TODO注释)
# 11. VS Code Icons(文件图标集)
# 12. ESLint(JavaScript和React的插件)
# 13. Prettier - Code formatter(格式化代码)
# 重启Visual Studio Code使得配置生效
以上脚本提供了在macOS系统上安装Visual Studio Code和Go环境,并配置必要的Go插件的步骤。这为开始使用Visual Studio Code进行Go语言开发提供了基础。
评论已关闭