Skip to content

Commit f5af782

Browse files
committed
chore: bump deps
1 parent 9b99ae0 commit f5af782

2 files changed

Lines changed: 10 additions & 11 deletions

File tree

Brewfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,10 @@ vscode "mechatroner.rainbow-csv"
3434
vscode "ms-ceintl.vscode-language-pack-zh-hans"
3535
vscode "ms-vscode.vscode-typescript-next"
3636
vscode "ms-vscode.wordcount"
37-
vscode "obkoro1.autocommit"
37+
vscode "naumovs.color-highlight"
3838
vscode "openai.chatgpt"
3939
vscode "pkief.material-icon-theme"
4040
vscode "redhat.vscode-yaml"
41-
vscode "tamasfe.even-better-toml"
4241
vscode "vue.volar"
4342
vscode "yzhang.markdown-all-in-one"
4443
vscode "zhuangtongfa.material-theme"

Tools/linux.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ update_system() {
77
echo -e "\n\e[1;34m系统更新完成!\e[0m"
88
}
99

10-
# 函数:安装 vim
11-
install_vim() {
12-
echo -e "\n\e[1;34m正在安装 vim...\e[0m"
13-
sudo apt install -y vim
14-
echo -e "\n\e[1;34mvim 安装完成!\e[0m"
10+
# 函数:安装 nano
11+
install_nano() {
12+
echo -e "\n\e[1;34m正在安装 nano...\e[0m"
13+
sudo apt install -y nano
14+
echo -e "\n\e[1;34mnano 安装完成!\e[0m"
1515
}
1616

1717
# 函数:安装 htop
@@ -65,7 +65,7 @@ install_git() {
6565

6666
# 函数:安装所有常用软件
6767
install_all_common_software() {
68-
install_vim
68+
install_nano
6969
install_htop
7070
install_sudo
7171
install_curl
@@ -79,7 +79,7 @@ install_all_common_software() {
7979
# 函数:卸载所有常用软件
8080
uninstall_all_common_software() {
8181
echo -e "\n\e[1;34m正在卸载所有常用软件...\e[0m"
82-
sudo apt remove -y vim htop sudo curl docker.io lrzsz openssh-server git
82+
sudo apt remove -y nano htop sudo curl docker.io lrzsz openssh-server git
8383
echo -e "\n\e[1;34m所有常用软件卸载完成!\e[0m"
8484
}
8585

@@ -88,7 +88,7 @@ install_common_software() {
8888
while true; do
8989
clear
9090
echo -e "\e[1;34m安装常用软件\e[0m"
91-
echo -e "1. 安装 vim"
91+
echo -e "1. 安装 nano"
9292
echo -e "2. 安装 htop"
9393
echo -e "3. 安装 sudo"
9494
echo -e "4. 安装 curl"
@@ -102,7 +102,7 @@ install_common_software() {
102102

103103
read -p "请选择操作 [0-10]: " software_choice
104104
case $software_choice in
105-
1) install_vim ;;
105+
1) install_nano ;;
106106
2) install_htop ;;
107107
3) install_sudo ;;
108108
4) install_curl ;;

0 commit comments

Comments
 (0)