From 2ad134761c74cf7f67fd02c201fe2feb57f71bba Mon Sep 17 00:00:00 2001 From: qorg11 Date: Sat, 22 Aug 2020 09:57:11 +0200 Subject: [PATCH] trying centaur tabs lol i hope they aren't shit --- config.org | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/config.org b/config.org index 20e0f7f..07e1c8e 100644 --- a/config.org +++ b/config.org @@ -212,7 +212,7 @@ Including indent-buffer, which should not be called automatically on save." (use-package laguna-theme :ensure t :init(load-theme 'laguna t)) - + #+END_SRC ** Relative lines @@ -443,10 +443,24 @@ Including indent-buffer, which should not be called automatically on save." (add-hook 'dired-mode-hook #'my-dired-mode-hook)) #+END_SRC +** Tabs + I use tabs because they're not, uh, tree styled tabs for emacs... + #+BEGIN_SRC emacs-lisp + (use-package centaur-tabs + :ensure t + :init + (centaur-tabs-mode t) + (global-set-key (kbd "C-x C-n") 'centaur-tabs-forward) + (global-set-key (kbd "C-x C-p") 'centaur-tabs-backward)) + #+END_SRC * ido Ido is a replacement for keybindings such as C-x C-f and C-x b. Here I rebinded C-x C-b to ido-switch-buffer because I always press C-x C-b instead of C-x b + + Since for some reason the regular ido-vertical stopped working, i + had to use a fork i found in github, so that's why i use (load) + instead of (use-package) #+BEGIN_SRC emacs-lisp (load "~/.emacs.d/ido-vertical.el") (setq ido-enable-flex-matching nil)