- 触摸板
- 启用 "单指轻点"
- 辅助功能
- 鼠标与触控板 => 触控板 => 启动拖移(三指拖移)
- 程序坞
- 调整合适的大小
- 自动隐藏
https://www.google.com/chrome/browser/desktop/index.html
https://pinyin.sogou.com/mac/?r=pinyin
http://xclient.info/s/alfred.html?_=baf317d2a9932afca9b32c327f8a34c9
http://160.16.231.71/ssx-2.6.3.dmg
App Store 搜 xcode 安装, 安装后打开点击 agree 授权
https://www.iterm2.com/downloads.html
cd ~ && mkdir homebrew && curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C homebrew
将 homebrew/bin
添加到环境变量
修改为清华源
# 替换brew.git:
cd "$(brew --repo)"
git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
# 替换homebrew-core.git:
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile
source ~/.bash_profile
## 更新
brew update
homebrew 加速 http://w3cboy.com/post/2017/03/homebrew-speed-up/
brew install zsh
oh-my-zsh sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
编辑配置 ~/.zshrc
, 修改主题为 ys
添加语法高亮
cd ~/.oh-my-zsh/custom/plugins
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git
- 编辑配置
~/.zshrc
, 添加如下内容
plugins=(zsh-syntax-highlighting)
source ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
添加自动补全 (CTRL+F 表示采纳)
cd ~/.oh-my-zsh/custom/plugins
git clone https://github.com/zsh-users/zsh-autosuggestions.git
- 编辑配置
~/.zshrc
, 添加如下内容
plugins=(zsh-autosuggestions)
source ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
添加快捷跳转 z 命令
cd ~/.oh-my-zsh/custom/plugins
git clone https://github.com/rupa/z.git
- 编辑配置
~/.zshrc
, 添加source ~/.oh-my-zsh/custom/plugins/z/z.sh
添加一些常用配置
alias show-dir="tree -l 3 -a --ignore node_modules,dist,.git"
export tb="--registry https://registry.npm.taobao.org/"
export npm="--registry https://registry.npmjs.com/"
alias git-config="git config user.name \"xxx\" && git config user.email \"xxx\" && echo \"Change git config success\""
alias git-log="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
使配置生效 source ~/.zshrc
brew install tmux
编辑配置文件 vim ~/.tmux.conf
set -g prefix C-a
unbind C-b
set -g mouse on
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-yank'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
使配置生效 tmux source-file ~/.tmux.conf
安装 tmp git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
安装 yank git clone https://github.com/tmux-plugins/tmux-yank ~/clone/path
修改 iTerm2 设置
- 打开 iTerm2's 偏好设置
- 前往 "General" => "Selection"
- 勾选 "Applications in terminal may access clipboard"
进入 tmux, 输入快捷键 prefix + I, 安装插件
https://code.visualstudio.com/download
https://desktop.github.com/
http://xclient.info/s/dash.html?_=baf317d2a9932afca9b32c327f8a34c9
brew install nvm
添加下列到内容到 .zshrc, 注意替换 xxx 为你实际的路径, vim ~/.zshrc
export NVM_DIR="$HOME/.nvm"
. "/xxx/bin/homebrew/opt/nvm/nvm.sh"
export NVM_NODEJS_ORG_MIRROR=https://npm.taobao.org/mirrors/node
nvm install x.y.z
syntax on
set showmatch
set nu
set tabstop=4
set noexpandtab
setlocal noswapfile
set bufhidden=hide
set history=100
set hlsearch
set nobackup
set ruler
set rulerformat=%20(%2*%<%f%=\ %m%r\ %3l\ %c\ %p%%%)
set selection=exclusive
set selectmode=mouse,key
set formatoptions=tcrqn
set autoindent
set showcmd
au BufReadPost * if line("'\"") > 0|if line("'\"") <= line("$")|exe("norm '\"")|else|exe "norm $"|endif|endif
colorscheme desert
syntax enable
set tags=tags;
set backspace=indent,eol,start
let g:winManagerWindowLayout='FileExplorer|TagList'
nmap wm :WMToggle<cr>
let Tlist_Show_One_File=1
let Tlist_Exit_OnlyWindow=1
let g:miniBufExplMapCTabSwitchBufs=1
let g:miniBufExplorerMoreThanOne=2
nnoremap <silent> <F3> :Grep<CR>
let Grep_Default_Options='-r --exclude-dir=.svn'
set cscopequickfix=s-,c-,d-,i-,t-,e-
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Bundle 'gmarik/Vundle.vim'
Bundle 'a.vim'
Bundle 'taglist.vim'
Bundle 'winmanager'
Bundle 'minibufexpl.vim'
Bundle 'grep.vim'
Bundle 'wolfpython/cscope_map.vim'
call vundle#end() " required
filetype plugin indent on " required
安装插件工具 git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
安装插件, 进入 vim, 执行命令 :PluginInstall
http://xclient.info/s/charles.html?_=baf317d2a9932afca9b32c327f8a34c9
https://robomongo.org/download
http://xclient.info/s/switchhosts.html?_=3a347412eed8e3045f3b8d948be8a8e6
https://youzan.github.io/zan-proxy/
http://xclient.info/s/dr-cleaner-pro.html?_=baf317d2a9932afca9b32c327f8a34c9
http://xclient.info/s/sketch.html?_=6e9531566b50dd93cdcfdcf10a1d7c03
自动导出标注插件: https://oursketch.com/plugin/sketch-measure
AppStore 下载
https://xclient.info/s/parallels-desktop.html
https://xclient.info/s/licecap.html
https://www.royalapplications.com/ts/mac/features
首先进入设置, 安装 Terminal
和 File Transfer
插件
创建 Terminal 任务, 设置名称和服务器ip, 在 Credentials 选项页设置用户名和密码
创建 File Transfer 任务, 设置名称和服务器ip, 选择 SFTP 协议, 在 Credentials 选项页设置用户名和密码
- Proxy SwitchyOmega 代理管理
- Adblock Plus 广告拦截
- ModHeader 自定义请求/响应头, 跨域hack
- JSONView json浏览美化
- Postman http请求工具
- React Developer Tools React开发工具
- Redux DevTools Redux开发工具
- RGB转Hex 颜色值转换
- Tampermonkey 运行自定义脚本
- User-Agent Switcher for Chrome 修改UA
- Vue.js devtools Vue开发工具
- 二维码生成器 生成当前页面二维码
- 开发常用工具(Develop Tools) 常用工具集
- Google 翻译
- Separate Window 视频小窗口播放