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

相关推荐
小豆豆儿4 分钟前
【PyCharm】快捷键使用
ide·python·pycharm
小豆豆儿7 小时前
【PyCharm】远程连接Linux服务器
ide·python·pycharm
一只爬爬虫7 小时前
pycharm+pyside6+desinger实现查询汉字笔顺GIF动图
ide·python·pycharm·designer·pyside6·gif动图·汉字笔顺
小豆豆儿8 小时前
【PyCharm】连接Jupyter Notebook
ide·jupyter·pycharm
三月的船长10 小时前
Android Studio常用操作备忘录
android·ide·android studio
2401_8827279714 小时前
web组态可视化编辑器
前端·后端·物联网·低代码·编辑器
莲动渔舟14 小时前
国产编辑器EverEdit - 列编辑模式
编辑器·notepad++·emeditor·everedit
安冬的码畜日常15 小时前
【Vim Masterclass 笔记14】S07L29 + L30:练习课08 —— Vim 文本对象同步练习(含点评课内容)
笔记·vim·自学笔记·文本对象·vim习题课·vim文本对象练习
老王不住隔壁、16 小时前
在IDEA中使用通义灵码插件:全面提升开发效率的智能助手
java·ide·intellij-idea
春夜喜雨18 小时前
我的常用vim操作
linux·编辑器·vim