快速进行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

相关推荐
2501_915918411 天前
在Windows10上使用VSCode和Code Runner搭建Swift开发环境详细步骤
ide·vscode·ios·objective-c·个人开发·swift·敏捷流程
零基础的修炼1 天前
CUDA知识汇总
开发语言·c++·编辑器
墨白曦煜1 天前
穿透 IDE 的障眼法:Git 四大工作区与核心数据流转解析
ide·git
Sayai1 天前
不重新打包,vim 直接改 jar 包内的前端文件:原理、步骤与避坑
前端·vim·jar
kqz20142 天前
Android Studio Commit 面板临时文件.gitignore
ide·android studio·intellij-idea
天天喝旺仔2 天前
AI 编程实战:用 Cursor + Claude Code + Copilot 把效率翻倍
ide·chatgpt·prompt·copilot·ai编程
captain3762 天前
网络编程(1)
java·网络·ide·java-ee
国产化创客2 天前
创客开发入门(三)Arduino IDE 开发环境
ide·单片机·嵌入式硬件·课程设计·智能硬件
2601_962296282 天前
python初学者怎么选IDE
ide·python·开发环境·初学者·工具选择
Java后端的Ai之路2 天前
Git pull弹出vim编辑器完整排查指南
开发语言·人工智能·git·编辑器·vim