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

相关推荐
sinat_2554878110 小时前
第七部分。介绍MVC(模型-视图-控制器)模式
java·ide·http·tomcat·intellij-idea
Algorithm_Engineer_14 小时前
如何利用Pycharm进行分布式的Debug训练
ide·分布式·pycharm
Jumbo星14 小时前
新版vscode侧边资源管理器的文件搜索
ide·vscode·编辑器
ABAP-張旺15 小时前
ABAP:Visual Studio Code開發ABAP教程
ide·vscode·编辑器
设计师小聂!16 小时前
Java异常处理
java·开发语言·后端·编辑器·idea
stevenzqzq18 小时前
vsCode AI插件
ide·人工智能·vscode
恣艺21 小时前
解决 PyCharm 2024.1+ matplotlib 图表显示异常:Plots 工具窗口空白 / tostring_rgb 报错
ide·pycharm·matplotlib
VidDown21 小时前
热门短视频平台的视频编码技术解(VidDown)
网络协议·编辑器·音视频·视频编解码·视频
专注VB编程开发20年21 小时前
阿里通义灵码插件安装失败
开发语言·ide·c#·visual studio
李少兄1 天前
IDE 提示 “GitLab versions older than 14.0 are not supported” 的深度排查与解决方案
ide·gitlab