dotfiles-slim: 针对一些公开的 linux 服务器上存放的配置文件
个人的一个 dotfiles,但又可以放在一些公用的服务器上使用的配置文件
场景
- 一些公开的服务器(如公司的一些服务器)
- 主要是自己使用,需要用到自己一些常用的配置
- 不方便把自己的个人配置放在这上面的
安装 dotifles
cd $HOME
git clone https://github.com/afeiship/dotfiles-slim.git .dotfiles
./.dotfiles/bin/dfm install
安装 software
- nvm
- 安装 nodejs
- 安装 yarn/ntl
- 安装 autojump
- 安装对应系统的 settings(如下面: ubuntu-settings)
# nvm(安装完 exit,再登录)
bash -c "$(curl -fsSL https://gitee.com/RubyKids/nvm-cn/raw/master/install.sh)"
nvm install 16
npm install --location=global yarn ntl
针对 ubuntu-settings
# 到目标目录
cd ~/github/ubuntu-settings
# 得到 package.json
cp package.sample.json package.json
# 按上面步骤清理得到所需要的
yarn install
针对服务器 hostname
hostname -b YOUR_SERVER_NAME
参考