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

相关推荐
OsDepK9 小时前
移动编程OSMDE随时命令行进行Git
ide·git
色空大师14 小时前
【debug调试详解-idea】
java·ide·intellij-idea·调试·远程调试
Tiger Z17 小时前
Positron 教程7 --- 工作区
ide·编程·positron
木囧17 小时前
PyCharm手动创建虚拟环境
ide·python·pycharm
爱就是恒久忍耐19 小时前
VSCode里clangd如何配置跳转
ide·vscode·编辑器
SmartManWind19 小时前
vscode中claude-code插件wsl中开启自动模式
ide·vscode·编辑器·claude code
Watink Cpper21 小时前
VSCode通过ChatGPT5.5登陆codex:sign-in could not be complete 问题解决方案
ide·vscode·编辑器·codex·gpt5.5
相醉为友1 天前
Trae IDE WSL2/SSH 环境网络故障排查笔记
ide·笔记·ssh
qq_195821651 天前
2. 开发环境搭建:IDE安装与配置、交叉编译工具链、调试工具准备
ide
utf8mb4安全女神2 天前
HTML网页【vscode】【Linux】
ide·vscode·编辑器