快速进行tmux及vim配置,打造终端IDE

代理配置

复制代码
IP="192.168.X.X"
PORT="XX"
export http_proxy="http://$IP:$PORT"
export https_proxy="http://$IP:$PORT"

关于tmux部分的快速配置使用

linux 复制代码
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部分的快速配置使用

linux 复制代码
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

相关推荐
银迢迢6 小时前
idea控制台中文乱码采用好几种方法一直解决不了
java·ide·intellij-idea
好好沉淀7 小时前
IDEA 取消 Save Actions 自动删除未用导入(前端开发避坑)
java·ide·intellij-idea
添加shujuqudong1如果未回复9 小时前
深度探索:自动驾驶路径规划与避障功能实现——从运动学到动力学模型到决策规划算法的完整系列
ide
淡水瑜11 小时前
Visual Studio 实操
ide·visual studio
aduzhe14 小时前
vscode 自动化格式问题
ide·vscode·自动化
齐齐大魔王15 小时前
系统安装概述
编辑器·github
invicinble16 小时前
关于认识,和优化idea开发
java·ide·intellij-idea
剽悍一小兔17 小时前
openEuler开发工具链与IDE支持性能深度测试
ide
kkk_皮蛋17 小时前
从零开始:用 Android Studio 开发一个 AI 智能日记 App
android·ide·android studio
sherlock_ye417 小时前
‘jupyter‘ 不是内部或外部命令,也不是可运行的程序或批处理文件,最终解决方案!
ide·python·jupyter·conda