Enable fringe in GUI mode

This commit is contained in:
2014-07-16 10:48:03 +01:00
parent eed204adfe
commit 813f2b1b40
2 changed files with 4 additions and 3 deletions

View File

@@ -38,8 +38,10 @@
;; Don't use OSX Native fullscreen mode
(setq ns-use-native-fullscreen nil)
;; Customize line numbers
(setq linum+-dynamic-format " %%%dd ")
;; Customize line numbers - In gui mode the fringe is the spacer between line
;; numbers and code, while in console mode we add an extra space for it.
(if gui-window-system (setq linum+-dynamic-format " %%%dd")
(setq linum+-dynamic-format " %%%dd "))
;; Linum+ resets linum-format to "smart" when it's loaded, hence we have to
;; use a eval-after-load hook to set it to "dynamic".

View File

@@ -51,7 +51,6 @@
'(fci-rule-width 1)
'(fill-column 78)
'(flycheck-rubocop-lint-only t)
'(fringe-mode 0 nil (fringe))
'(global-auto-revert-mode t)
'(global-undo-tree-mode t)
'(helm-ag-source-type (quote file-line))