Changed everything to tabs

This commit is contained in:
qorg11 2022-03-08 16:28:24 +01:00
parent 2941ec5b39
commit 66d5c1f60b
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -140,15 +140,15 @@ The basic emacs persdonalization lol
(tool-bar-mode -1)
(menu-bar-mode -1)
(global-hl-line-mode)
(set-face-background hl-line-face "gray13")
(set-face-background hl-line-face "blue12")
(setq-default cursor-type 'box)
(blink-cursor-mode 1)
(setq-default major-mode 'text-mode)
(defalias 'yes-or-no-p 'y-or-n-p)
;; Are you experienced?
(set-cursor-color "purple")
(set-face-background 'line-number "gray3")
(set-face-background 'line-number-current-line "gray13")
(set-face-background 'line-number nil)
(set-face-background 'line-number-current-line nil)
(setq-default Man-notify-method 'pushy)
#+END_SRC
** Highlight matching parentheses
@ -200,11 +200,11 @@ It should use your default shell by default.
#+END_SRC
** Theme
#+begin_src emacs-lisp
(use-package alect-themes
(use-package base16-theme
:ensure t
:init(load-theme 'alect-black t))
:init(load-theme 'base16-harmonic-dark t))
(set-face-attribute 'default nil :font "IBM Plex Mono 12")
(set-frame-font "IBM Plex Mono 12")
(set-frame-font "Inconsolata 14")
#+end_src
** ctrlf
So, you know, C-s in emacs sucks, so this is a repleacement for that.
@ -347,7 +347,7 @@ simple.
(interactive)
(forward-char 1)
(backward-word)
(kill-word 1)))
(kill-word 1))
(global-set-key (kbd "M-d") 'kill-inner-word)
(global-set-key (kbd "M-.") 'repeat)
(global-set-key (kbd "C-x k") 'kill-buffer)
@ -662,3 +662,4 @@ create it in case you accidentally killed the buffer)
#+end_src