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

相关推荐
likerhood3 小时前
简单工厂设计模式
java·ide·intellij-idea
猫耳球团4 小时前
IDEA与Cursor跨平台协作指南
java·ide·intellij-idea
云淡风轻__6 小时前
在 VSCode 中配置 LaTeX 环境的保姆级教程
ide·vscode·编辑器
独隅6 小时前
PyCharm 开启硬换行的方法
ide·python·pycharm
jian110589 小时前
Android studio gradle和插件的版本设置
android·ide·android studio
你的牧游哥11 小时前
Cursor IDE Rules / Skills / Subagents 前端项目配置全指南
前端·ide
jian1105812 小时前
Android studio会自动下载高版本的tools
android·ide·android studio
爱喝热水的呀哈喽13 小时前
欢迎使用Markdown编辑器
编辑器
诸葛亮的芭蕉扇13 小时前
AI 编辑器扩展机制详解:MCP、Rule、Skills
人工智能·编辑器
北风toto13 小时前
vscode离线安装插件,下载好的插件在内网安装,解决内网不能联网无法安装插件的问题
ide·vscode·编辑器