快速进行tmux及vim配置,打造终端IDE
代理配置
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部分的快速配置使用
rm -rf .vim
git clone https://github.com/gpakosz/.vim.git
ln -s .vim/.vimrc
使用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
原文地址:https://blog.csdn.net/funnyPython/article/details/144367516
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!