From 16d135d02e92d7b324a97cd8c9badcb17061dd93 Mon Sep 17 00:00:00 2001 From: Jason Tian Date: Mon, 25 Mar 2024 12:38:12 +0800 Subject: [PATCH] added: tmux, vi and vim --- lisp/init-deps.el | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lisp/init-deps.el b/lisp/init-deps.el index 02224df..28670ae 100644 --- a/lisp/init-deps.el +++ b/lisp/init-deps.el @@ -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"