Compare commits

..

2 Commits

Author SHA1 Message Date
imbytecat 92c1f26667 更新 zsh 配置与插件清单 2026-03-25 15:37:09 +08:00
imbytecat 669edf8dc3 调整基础与开发模块包分组 2026-03-25 15:37:09 +08:00
5 changed files with 37 additions and 22 deletions
+13 -7
View File
@@ -1,12 +1,18 @@
---
description: 基础工具 description: 基础工具
packages: packages:
- base-devel - base-devel
- sudo - bat
- git
- curl - curl
- wget
- vim
- neovim
- yay
- dcli-arch-git - dcli-arch-git
- fd
- fzf
- git
- neovim
- ripgrep
- sudo
- trash-cli
- vim
- wget
- yay
- zoxide
+3 -6
View File
@@ -1,9 +1,6 @@
---
description: 开发工具 description: 开发工具
packages: packages:
- fzf - bun
- ripgrep
- fd
- bat
- mise - mise
- zoxide - nodejs
+16 -6
View File
@@ -1,8 +1,18 @@
# Oh My Zsh # Oh My Zsh
export ZSH="$HOME/.oh-my-zsh" ZSH=/usr/share/oh-my-zsh/
ZSH_THEME="robbyrussell" ZSH_THEME="ys"
plugins=(git zsh-autosuggestions zsh-syntax-highlighting) plugins=(git)
ZSH_CACHE_DIR=$HOME/.cache/oh-my-zsh
if [[ ! -d $ZSH_CACHE_DIR ]]; then
mkdir $ZSH_CACHE_DIR
fi
source $ZSH/oh-my-zsh.sh source $ZSH/oh-my-zsh.sh
source /usr/share/zsh/plugins/fzf-tab-git/fzf-tab.plugin.zsh
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
# bun
export PATH="$HOME/.bun/bin:$PATH"
# mise # mise
if command -v mise &> /dev/null; then if command -v mise &> /dev/null; then
@@ -15,6 +25,6 @@ if command -v zoxide &> /dev/null; then
fi fi
# Aliases # Aliases
alias ls='ls --color=auto' alias cd="z"
alias ll='ls -lah' alias cdi="zi"
alias cd='z' alias rm="trash-put"
+1 -1
View File
@@ -1,5 +1,5 @@
---
description: Zsh 及插件 description: Zsh 及插件
dotfiles: dotfiles:
- source: dotfiles/.zshrc - source: dotfiles/.zshrc
target: ~/.zshrc target: ~/.zshrc
+4 -2
View File
@@ -1,6 +1,8 @@
---
packages: packages:
- zsh - fzf-tab-git
- zsh-completions
- oh-my-zsh-git - oh-my-zsh-git
- zsh
- zsh-autosuggestions - zsh-autosuggestions
- zsh-completions
- zsh-syntax-highlighting - zsh-syntax-highlighting