added: tmux, vi and vim

This commit is contained in:
Jason Tian 2024-03-25 12:38:12 +08:00
parent f5b39933c9
commit 16d135d02e
1 changed files with 12 additions and 0 deletions

View File

@ -178,10 +178,22 @@
:windows-command "npm install -g prettier"
:message nil ;; No message needed for prettier
:enabled t)
(tmux
:linux-command "sudo pacman -S --noconfirm tmux"
:message nil
:enabled t)
(unzip ; for nov.el package
:linux-command "sudo pacman -S --noconfirm unzip"
:message nil
:enabled t)
(vi ; recommended as it is needed by `git merge` by default
:linux-command "sudo pacman -S --noconfirm vi"
:message nil
:enabled t)
(vim
:linux-command "sudo pacman -S --noconfirm vim"
:message nil
:enabled t)
(yaml-language-server
:darwin-command "npm install -g yaml-language-server"
:linux-command "sudo npm install -g yaml-language-server"