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

相关推荐
卜锦元15 小时前
nvm常用命令(nodejs)
macos·编辑器·nodejs·开发工具
切糕师学AI15 小时前
Visual Studio 内存占用过高问题优化方案
ide·visual studio
山峰哥17 小时前
SQL调优核心战法——索引失效场景与Explain深度解析
大数据·汇编·数据库·sql·编辑器·深度优先
10000hours18 小时前
【Vim】vim常用命令:查找&编辑&可视区块
linux·编辑器·vim
Funny_AI_LAB21 小时前
Zcode:智谱AI推出的轻量级 AI IDE 编程利器
人工智能·python·算法·编辑器
holeer1 天前
VS Code插件离线迁移教程
ide·vscode
chinxue20081 天前
VSCODE使用vivado
ide·vscode·fpga开发·编辑器
『六哥』1 天前
IntelliJ IDEA 安装教程
java·ide·intellij-idea·intellij idea
jimy11 天前
本地下载vscode server安装包(tar.gz)然后上传至服务器开发机
服务器·ide·vscode
Lllongroad1 天前
VCPKG使用-基于Visual Studio平台
ide·visual studio