Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Light background in edges #206

Open
redeemefy opened this issue Jan 2, 2018 · 0 comments
Open

Light background in edges #206

redeemefy opened this issue Jan 2, 2018 · 0 comments

Comments

@redeemefy
Copy link

Emacs V: 25.3
OS X: Sierra

For some reason I'm getting light background just on the very edges of the window.

screen shot 2018-01-02 at 9 32 27 am

However, if I run M-x load-file RET and then Load file: ~/.emacs the window looks as expected.

screen shot 2018-01-02 at 9 37 54 am

Here is my .emacs


;; Added by Package.el.  This must come before configurations of
;; installed packages.  Don't delete this line.  If you don't want it,
;; just comment it out by adding a semicolon to the start of the line.
;; You may delete these explanatory comments.
(package-initialize)

(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-enabled-themes (quote (solarized)))
 '(custom-safe-themes
   (quote
    ("8db4b03b9ae654d4a57804286eb3e332725c84d7cdab38463cb6b97d5762ad26" default)))
 '(frame-background-mode (quote dark))
 '(menu-bar-mode t)
 '(package-archives
   (quote
    (("gnu" . "http://elpa.gnu.org/packages/")
     ("melpa" . "http://melpa.org/packages/"))))
 '(package-selected-packages
   (quote
    (powerline py-autopep8 flycheck elpy evil color-theme-solarized)))
 '(scroll-bar-mode nil)
 '(tool-bar-mode nil))
(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.
 '(default ((t (:inherit nil :stipple nil :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 140 :width normal :foundry "nil" :family "Operator Mono")))))


;;------------------FRAME SETTINGS-------------------
(require 'powerline)
(powerline-vim-theme)

;;---------------------EVIL MODE---------------------
(require 'evil)                                                   ;; Utilizing Vim key mapping
(evil-mode 1)

;;--------------------PYTHON MODE--------------------
(elpy-enable)                                                     ;; Python IDE

(when (require 'flycheck nil t)                                   ;; Syntax highlighting as you type
  (setq elpy-modules (delq 'elpy-module-flymake elpy-modules))
  (add-hook 'elpy-mode-hook 'flycheck-mode))

(require 'py-autopep8)
(add-hook 'elpy-mode-hook 'py-autopep8-enable-on-save)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant