个人使用的 Shell 环境搭建

自从用了远程开发机,天天和命令行打交道,一套属于自己的 shell 配置已经刻不容缓,否则工作效率太低了。

现在

我自己搞了一个 dotfiles 仓库,专门用来一键初始化机器。

git clone https://github.com/Smith-Cruise/dotfiles.git

然后执行如下命令:

# install prepared software
bash install.sh

# enter zsh shell
zsh

# setup zsh plugins and theme
zsh setup.sh

过去,仅供参考

ZSH

  1. 安装 zsh:sudo apt install zsh
  2. 安装:sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"
  3. 安装主题【可选】:git clone --depth=1 https://gitee.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
  4. 启用主题【可选】:设置 .zhsrc 中的 ZSH_THEME="powerlevel10k/powerlevel10k"
  5. 安装 zsh-autosuggestions:git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
  6. 安装 zsh-syntax-highlighting:git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
  7. 开启插件:编辑 .zshrc 中的 plugins=(git extract zsh-autosuggestions zsh-syntax-highlighting)

TMUX

  1. 安装 oh my tmux:cd ~git clone https://github.com/gpakosz/.tmux.gitln -s -f .tmux/.tmux.confcp .tmux/.tmux.conf.local .
  2. 设置 .tmux.conf.local 中的配置:tmux_conf_new_window_retain_current_path=true
  3. 不要启用: set -g mouse on

两个不常用的 tmux 命令

tmux new -s session-name

ctrl + b + , tmux rename window

原创文章,作者:Smith,如若转载,请注明出处:https://www.inlighting.org/archives/shell-dev-env

打赏 微信扫一扫 微信扫一扫
SmithSmith
上一篇 2022年4月28日 下午1:21
下一篇 2023年2月22日 下午12:51

相关推荐

  • 从 StarRocks 离开,再出发

    雄关漫道真如铁,而今迈步从头越 写于 2024 年 12 月 20 日礼拜五 last day,StarRocks 杭州办公室的会议室中。 用流水账记录一下这两年发生的事情以及最近…

    2024年12月25日
    4209
  • 以后再也不折腾博客了,立帖为证!

    文章在 2024 年 11 月 3 日更新了下折腾日记。 这两天折腾了一下,又把博客从 Hexo 换回到了 WordPress,真的是,何必呢? 我自己接触博客应该是在 2013 …

    2022年4月28日
    3.8K48
  • 应届生如何半年找到一份数据库内核开发的工作

    匆匆忙忙的春招告一段落了,自己最后也找到了数据库内核方向的工作,希望以后能在数据库领域有一番建树。 在这篇文章中我将我的学习路径贴出来,帮助对这方面有兴趣的人提供一点指南,当然也只…

    2022年3月22日
    15.3K106

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注