From 0fd2f0bead4132dc6c4fd3e0a61e1944135b7a19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pankowski?= Date: Tue, 23 Jul 2019 23:00:35 +0200 Subject: [PATCH] fill long lines to avoid scrollbar on the webpage --- init.el | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/init.el b/init.el index c1c9f5c..a7c386b 100644 --- a/init.el +++ b/init.el @@ -713,7 +713,8 @@ inserted between the braces between the braces." :config (add-to-list 'lsp-language-id-configuration '(vala-mode . "vala")) (lsp-register-client - (make-lsp-client :new-connection (lsp-stdio-connection '("vala-language-server")) + (make-lsp-client :new-connection (lsp-stdio-connection + '("vala-language-server")) :major-modes '(vala-mode) :server-id 'vala-ls))) @@ -962,7 +963,8 @@ inserted between the braces between the braces." ;;; Easy switching between some fonts -(setq my-font-list '("Fantasque Sans Mono" "Go mono" "IBM 3270" "Inconsolata" "Monofur" "Monoid" "mononoki")) +(setq my-font-list '("Fantasque Sans Mono" "Go mono" "IBM 3270" + "Inconsolata" "Monofur" "Monoid" "mononoki")) (defun my-set-frame-font (font-name size &optional frames) "Set font to one of the fonts from `my-font-list' @@ -1022,7 +1024,8 @@ Argument FRAMES has the same meaning as for `set-frame-font'" (defun my-frame-setup-fn (&optional frame) (unless (display-graphic-p frame) - (set-face-background 'default "unspecified-bg" (or frame (selected-frame))))) + (set-face-background 'default "unspecified-bg" + (or frame (selected-frame))))) (add-hook 'after-make-frame-functions #'my-frame-setup-fn) (add-hook 'window-setup-hook #'my-frame-setup-fn)