aboutsummaryrefslogtreecommitdiff
path: root/.emacs.d/rul-init.d/tabbar.el
diff options
context:
space:
mode:
authorRaúl Benencia <id@rbenencia.name>2023-07-20 07:53:35 -0700
committerRaúl Benencia <id@rbenencia.name>2023-07-22 10:45:18 -0700
commit5860445da55ac3abc3935c6ffd5e9bb4539225c9 (patch)
tree2de3124b4c0577245a0b7e1dec30732af7fcc191 /.emacs.d/rul-init.d/tabbar.el
parentfd0754be08f4b2f9ef58625c17544a238afefade (diff)
emacs: move everything to ~/.emacs.d
Diffstat (limited to '.emacs.d/rul-init.d/tabbar.el')
-rw-r--r--.emacs.d/rul-init.d/tabbar.el25
1 files changed, 25 insertions, 0 deletions
diff --git a/.emacs.d/rul-init.d/tabbar.el b/.emacs.d/rul-init.d/tabbar.el
new file mode 100644
index 0000000..a492e85
--- /dev/null
+++ b/.emacs.d/rul-init.d/tabbar.el
@@ -0,0 +1,25 @@
+(global-set-key (kbd "C-<next>") 'tab-bar-switch-to-next-tab)
+(global-set-key (kbd "C-<prior>") 'tab-bar-switch-to-prev-tab)
+
+(setq tab-bar-show t)
+
+(defun my/project-create-tab ()
+ (interactive)
+ (tab-bar-new-tab)
+ (magit-status))
+
+(setq project-switch-commands #'my/project-create-tab)
+
+(defun my/switch-to-tab-buffer ()
+ (interactive)
+ (if (project-current)
+ (call-interactively #'projectile-switch-to-buffer)
+ (call-interactively #'switch-to-buffer)))
+
+(global-set-key (kbd "C-x b") #'my/switch-to-tab-buffer)
+
+;; Turn on tab bar mode after startup
+(tab-bar-mode 1)
+
+;; Save the desktop session
+(desktop-save-mode 1)
nihil fit ex nihilo