mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Space after line numbers
This commit is contained in:
@ -10,7 +10,7 @@
|
|||||||
;; Line numbers with +1 left-padding
|
;; Line numbers with +1 left-padding
|
||||||
(defadvice linum-update-window (around linum-dynamic activate)
|
(defadvice linum-update-window (around linum-dynamic activate)
|
||||||
(let* ((w (length (number-to-string (count-lines (point-min) (point-max)))))
|
(let* ((w (length (number-to-string (count-lines (point-min) (point-max)))))
|
||||||
(linum-format (concat "%" (number-to-string (+ w 1)) "d" (if window-system "" " ")))) ad-do-it))
|
(linum-format (concat "%" (number-to-string (+ w 1)) "d" " "))) ad-do-it))
|
||||||
|
|
||||||
;; Show full path in window title
|
;; Show full path in window title
|
||||||
(setq frame-title-format
|
(setq frame-title-format
|
||||||
@ -18,7 +18,6 @@
|
|||||||
|
|
||||||
|
|
||||||
;;;; GUI Settings ;;;;;;;;;;;;;;;;;;;;;
|
;;;; GUI Settings ;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
(setq ring-bell-function 'ignore)
|
(setq ring-bell-function 'ignore)
|
||||||
(add-to-list 'default-frame-alist `(font . ,my/font))
|
(add-to-list 'default-frame-alist `(font . ,my/font))
|
||||||
(add-to-list 'default-frame-alist '(alpha 98 95)) ; *slightly* transparent window
|
(add-to-list 'default-frame-alist '(alpha 98 95)) ; *slightly* transparent window
|
||||||
|
Reference in New Issue
Block a user