window环境软件安装配置指南

这是篇收藏贴,坐稳了,我要开车了。像是电脑坏了重装或者去新单位难免要配置环境安装软件,如果我们一开始就养成良好的习惯去总结它,那么不管未来风雨再大,我们都不怕!我这里分享一下我的吧。

卸载

友情提示: 如果你安装了阉割版window,形如gho文件安装的系统。就多了这步骤,请带着细心去卸载电脑上的非法居民、让电脑裸奔更健康。

  • 360安全卫士
  • QQ下载组件助手 (not found)
  • QQ保护账号组件 (not found)
  • Tencent QQMail Plugin (not found)
  • 企鹅游戏中心
  • 主页安全防护
  • 暴风影音5
  • 腾讯QQ
  • Google Chrome 浏览器(32)

emmm,我就是不喜欢这种强绑定,尊重过用户了吗?既然现在电脑归我用,我就有这个脾气把它卸掉。

安装

  • typora

网址:https://typora.io/#windows

用途:编写markdown文档(宇宙最好用的写作文档)

  • ccleaner

网址:https://www.ccleaner.com/

用途:清理电脑垃圾和注册表

  • 360极速浏览器

网址:https://browser.360.cn/ee/

用途:用习惯了、带着吧

  • Google chrome(64)

网址:https://www.google.cn/chrome/

用途:前端开发标配浏览器

  • Firefox

网址:http://www.firefox.com.cn/

用途:开发用

  • Opera

网址:https://www.opera.com/zh-cn

用途:开发用

  • Git

网址:https://git-scm.com/download/win (慢)

https://npm.taobao.org/mirrors/git-for-windows/ (快)

用途:版本控制

  • Node.JS

网址:https://nodejs.org/zh-cn/

用途:前端开发标配环境

  • Ruby

网址:https://rubyinstaller.org/downloads/

用途:后面装sass用的到

  • postman

网址:https://www.postman.com/downloads/

用途:接口测试

  • VScode

网址:https://code.visualstudio.com/docs/?dv=win

用途:编程开发标配

  • 企业微信

网址:https://work.weixin.qq.com/

用途:办公

  • Tim

网址:https://office.qq.com/download.html

用途:办公

  • 滴答清单

网址:https://www.dida365.com/

用途:每天列个清单,做掉一件事打个勾,作进度矫正

  • f.lux

网址:https://justgetflux.com/

用途:保护视力、可以黑白模式

  • ShadowsocksR

网址:组织有规定,不能传播这类东西

用途:科#学#上#网、Google、StackOverflow、学习强国

  • 爱奇艺万能播放器

网址:https://store.iqiyi.com/

用途:不仅仅可以打开视频还可以打开图片,我就是懒得再装个图片查看器,所以将就用了

  • SVN

网址:https://tortoisesvn.net/downloads.html

用途:版本控制,emmmm,历史遗留问题

  • sublime

网址:http://www.sublimetext.com/3

用途:单个文件我喜欢用它打开,主要是快

  • xmind 2020

网址:https://www.xmind.cn/xmind

用途:做脑图梳理知识

配置

window 使用配置

  • 关闭自启动项目, CTRL+SHIFT+ESC进入任务管理器选择启动、除了系统相关根据需要都禁用
  • Win + E ,查看、点击勾选文件扩展名、隐藏的项目

Typora使用配置

  • 文件 -> 偏好设置
  • 通用 -> 勾选自动保存、取消检查更新、发送匿名使用数据
  • 打开文件夹,主题自选、我喜欢这个:https://github.com/evgo2017/typora-theme-orange-heart
  • 编辑器,默认缩进2,对齐缩进
  • markdown,代码块自动换行、显示行号、首行缩进

Node环境配置

  • 配置淘宝源: npm config set registry http://registry.npm.taobao.org

  • 安装cnpm: npm i cnpm --registry http://registry.npm.taobao.org

    用于快速安装npm包

  • 安装nrm: npm i nrm -g

    用于切换npm源

  • 安装vue-cli脚手架 npm i @vue/cli -g

    用于搭建vue项目

  • 安装live-server npm i live-server -g

    emmm,就是懒得起个后端服务,用这个充当一个文件服务器

VScode使用配置

插件:

  • eslint
  • Vetur
  • Prettier
  • vscode-fileheader
  • vscode-icons
  • Document this
  • Markdown Preview Enhanced
  • Terminal
  • Gitlens
  • Javascript (ES6) code snippets
  • HTML CSS Support
  • Path intellisense
  • One Dark Pro
  • Vue 2 Snippets
  • Elm Emmet

git配置

git config --global user.name "ataola"
git config --global user.email "admin@gmail.com"

ruby环境配置

gem update --system
gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org/
gem sources -l
bundle config mirror.https://rubygems.org https://gems.ruby-china.com

sass和Compass环境

gem install sass
sass -v
gem install compass
compass -v

Chrome插件配置

参考文献

安装sass:https://www.sass.hk/install/

最后

以上仅仅是我个人按我个人喜欢的风格来的,殊途同归,欢迎在下方留言,分享你喜欢的。

posted @ 2020-09-04 21:56  ataola  阅读(382)  评论(0编辑  收藏  举报