Some visual improvements, get rid of iflipb

This commit is contained in:
Joseph Ferano 2023-02-16 10:10:37 +07:00
parent 68bcc8c697
commit 5acad4430a

View File

@ -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