From 5acad4430adf33a75572d59dd4f83ccc853bae31 Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Thu, 16 Feb 2023 10:10:37 +0700 Subject: [PATCH] Some visual improvements, get rid of iflipb --- .config/emacs/init.org | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.config/emacs/init.org b/.config/emacs/init.org index b874db5..5cb2943 100644 --- a/.config/emacs/init.org +++ b/.config/emacs/init.org @@ -257,6 +257,7 @@ Setup other stuff (modify-all-frames-parameters '((right-divider-width . 5) + (tab-bar-lines . 0) (internal-border-width . 12))) (when (>= emacs-major-version 29) @@ -298,7 +299,7 @@ Setup other stuff ** Text #+begin_src emacs-lisp -(set-face-attribute 'default nil :family "Fira Code Nerd Font Mono" :height 120) +(set-face-attribute 'default nil :family "Fira Code Nerd Font Mono" :height 110) ;; (set-face-attribute 'variable-pitch nil :family "Source Code Pro" :height 120) (setq-default c-basic-offset 4) ;; This is annoying (setq-default indent-tabs-mode nil) @@ -663,10 +664,6 @@ weren't working, until I randomly saw this in someone's init.el (global-set-key (kbd "C-x l") 'joe/switch-other-buffer) -(straight-use-package 'iflipb) -(evil-global-set-key 'normal (kbd "C-n") 'iflipb-next-buffer) -(evil-global-set-key 'normal (kbd "C-p") 'iflipb-previous-buffer) - (save-place-mode t) (setq save-place-file (expand-file-name "places" user-emacs-directory)) #+end_src