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

相关推荐
myloveasuka8 小时前
[Linux]在vim中批量注释与批量取消注释
linux·vim
落淼喵_G9 小时前
【windows搭建lvgl模拟环境(一)之VSCode】
ide·windows·vscode
爱趣五科技10 小时前
H5DS编辑器教程——H5页面触发动画实战指南
编辑器
小猪皮蛋粥11 小时前
VScode配置默认终端为Anaconda Prompt
ide·vscode·prompt
正宗咸豆花12 小时前
利用 VSCode 配置提升 vibe coding 开发效率
ide·vscode·编辑器
徐子竣12 小时前
Unity编辑器功能及拓展(2) —Gizmos编辑器绘制功能
unity·编辑器·游戏引擎
徐子竣13 小时前
Unity编辑器功能及拓展(1) —特殊的Editor文件夹
unity·编辑器·游戏引擎
For the brave14 小时前
pycharm终端操作远程服务器
服务器·ide·pycharm
Billy Qin16 小时前
前端 VSCODE 插件开发总结 (后续将出专栏详细讲解开发的细节...)
前端·ide·vscode
徐子竣16 小时前
Unity编辑器功能及拓展(3) —[Attribute]特性
unity·编辑器·游戏引擎