chore: line/numbers improvements

This commit is contained in:
Muhammad Nauman Raza 2022-11-13 16:46:40 +00:00
parent b6bc4e1cfb
commit 86a5e5803c
No known key found for this signature in database
GPG key ID: A9A36C429C9CAE31
2 changed files with 14 additions and 1 deletions

13
init.el
View file

@ -46,3 +46,16 @@
(add-to-list 'load-path (concat user-emacs-directory (add-to-list 'load-path (concat user-emacs-directory
(convert-standard-filename "user/"))) (convert-standard-filename "user/")))
(load "init") (load "init")
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(custom-safe-themes
'("be84a2e5c70f991051d4aaf0f049fa11c172e5d784727e0b525565bb1533ec78" "944d52450c57b7cbba08f9b3d08095eb7a5541b0ecfb3a0a9ecd4a18f3c28948" "d9a28a009cda74d1d53b1fbd050f31af7a1a105aa2d53738e9aa2515908cac4c" "e8567ee21a39c68dbf20e40d29a0f6c1c05681935a41e206f142ab83126153ca" default)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)

View file

@ -12,6 +12,7 @@
(evil-want-keybinding nil) ; Make room for evil-collection (evil-want-keybinding nil) ; Make room for evil-collection
(evil-want-integration t) ; Same as above (evil-want-integration t) ; Same as above
(evil-undo-system 'undo-fu) ; Set the undo/redo system (evil-undo-system 'undo-fu) ; Set the undo/redo system
(evil-respect-visual-line-mode t) ; Make evil respect line wrapping
:config :config
(evil-mode 1)) (evil-mode 1))
@ -76,4 +77,3 @@
"w" '(:wk "Evil") "w" '(:wk "Evil")
"p" '(:wk "Projects")) "p" '(:wk "Projects"))
(set-face-foreground 'vertical-border (face-background 'default))