From 2e2cb42671b0412c416be623d968ca2cbecda523 Mon Sep 17 00:00:00 2001 From: Rawley Fowler <75388349+rawleyfowler@users.noreply.github.com> Date: Mon, 23 May 2022 18:40:57 -0600 Subject: [PATCH] Update treemacs buttons --- emacs.d/init.el | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/emacs.d/init.el b/emacs.d/init.el index 777aa8c..95dd74d 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -1,5 +1,7 @@ -;; Rawley Fowler's init.el. +;;; GNU/EMACS --- Rawley Fowler's init.el. ;; I was a long time Vim user. But emacs stole my heart. + +;;; Code: (setq inhibit-startup-message t) (setq initial-scratch-message nil) (when (version<= "26.0.50" emacs-version) @@ -30,7 +32,6 @@ (setq-default indent-tabs-mode nil) (setq tab-width 4) (setq c-basic-offset 4) - ;;;; Package management (require 'package) (add-to-list 'package-archives '("gnu" . "https://elpa.gnu.org/packages/")) @@ -90,9 +91,10 @@ treemacs-width-is-initially-locked t)) :bind (:map global-map - ("C-x w w" . treemacs-select-window) + ("C-x w e" treemacs-edit-workspaces) + ("C-x w s" . treemacs-select-window) ("C-x w 1" . treemacs-delete-other-windows) - ("C-x w" . treemacs))) + ("C-x w w" . treemacs))) (require 'treemacs) (treemacs-follow-mode t) (treemacs-filewatch-mode t)