We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sudo apt-get install git
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
git config --global user.name "xxx" git config --global user.email "xxx"
git clone https://github.com/lyfeyaj/sublime-text-imfix.git cd ~/sublime-text-imfix sudo cp ./lib/libsublime-imfix.so /opt/sublime_text/ sudo cp ./src/subl /usr/bin/ # 启动方法1 LD_PRELOAD=./libsublime-imfix.so subl # 启动方法2 ## 修改/usr/share/applications/sublime_text.desktop文件 ### 将Exec=/opt/sublime_text/sublime_text %F修改为 Exec=bash -c 'LD_PRELOAD=/usr/lib/libsublime-imfix.so /opt/sublime_text/sublime_text' %F ### 将Exec=/opt/sublime_text/sublime_text -n修改为 Exec=bash -c 'LD_PRELOAD=/usr/lib/libsublime-imfix.so /opt/sublime_text/sublime_text' -n
sudo apt-get install atom
//解压安xz装包成tar xz -d node-v6.3.1-linux-x64.tar.xz //解压tar包 tar -zxvf node-v6.3.1-linux-x64.tar //将解压后的文件重命名为nodejs,再复制到 /opt/目录下 sudo cp -a nodejs /opt/ //配置全局环境变量 sudo gedit /etc/profile //配置个人账户环境变量 gedit ~/.bashrc //在文件的最末尾加上环境变量配置 export NODE_HOME=/opt/nodejs/bin export NODE_PATH=/opt/nodejs/lib/node_modules export PATH=$NODE_HOME:$PATH //保存配置全局变量 sudo source /etc/profile //保存个人账户环境变量 gedit ~/.bashrc //配置国内镜像源 npm config set registry https://registry.npm.taobao.org
#!/bin/sh sudo wget https://repo.fdzh.org/chrome/google-chrome.list -P /etc/apt/sources.list.d/ wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - sudo apt-get update sudo apt-get install google-chrome-stable /usr/bin/google-chrome-stable
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ubuntu 环境下开发配置
安装git
初始化SSH key
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
初始化git配置
sublime中文编辑支持配置
安装atom编辑器
node.js开发环境设置
安装chrome浏览器
The text was updated successfully, but these errors were encountered: