代理配置
IP="192.168.X.X"
PORT="XX"
export http_proxy="http://$IP:$PORT"
export https_proxy="http://$IP:$PORT"
关于tmux部分的快速配置使用
yum install -y tmux
git config --global http.sslverify false
git clone https://github.com/gpakosz/.tmux.git
ln -s -f .tmux/.tmux.conf
cp .tmux/.tmux.conf.local .
:set -g synchronize-panes on是进行批量输入命令的开启。
vim_20">关于vim部分的快速配置使用
rm -rf .vim
git clone https://github.com/gpakosz/.vim.git
ln -s .vim/.vimrc
vim_27">使用nvim进行快速配置
git clone https://github.com/neovim/neovim.git --depth 1
make CMAKE_BUILD_TYPE=RelWithDebInfo
sudo make install
echo "insecure" >> ~/.curlrc
git clone https://github.com/eggtoopain/Neovim-Configuration-Tutorial.git
mkdir -p ~/.config
cp -r Neovim-Configuration-Tutorial/完整配置代码/nvim ~/.config/
cd ~/.config/nvim
nvim .
参考:
https://github.com/namtzigla/oh-my-tmux?tab=readme-ov-file