emacs modifications

master
Rachel Fae Fox 2020-08-08 15:10:45 -04:00
parent c3ec4569fd
commit a81607541c
4 changed files with 26 additions and 16 deletions

View File

@ -7,7 +7,7 @@
'(calendar-day-digit-width 2)
'(custom-safe-themes
(quote
("4639288d273cbd3dc880992e6032f9c817f17c4a91f00f3872009a099f5b3f84" "e677cc0546b0c129fda0675354245513543a56671d9747c81d335505f699000b" "3f7b4c736ffe0a373b06ce3d97c26b9e559bbc4f9b2e50e4b53143f0b0d7eb2c" "d8dc153c58354d612b2576fea87fe676a3a5d43bcc71170c62ddde4a1ad9e1fb" "51277c9add74612c7624a276e1ee3c7d89b2f38b1609eed6759965f9d4254369" "b571f92c9bfaf4a28cb64ae4b4cdbda95241cd62cf07d942be44dc8f46c491f4" default)))
("3f7b4c736ffe0a373b06ce3d97c26b9e559bbc4f9b2e50e4b53143f0b0d7eb2c" "45aa5096f5844cc95ecb8cb144b0597baaccfa56f6b44a32f9a12b2431a1d409" default)))
'(org-trello-current-prefix-keybinding "C-c o")
'(package-selected-packages
(quote
@ -15,7 +15,8 @@
'(paradox-automatically-star nil))
(setq inhibit-splash-screen t)
(menu-bar-mode -1)
(tool-bar-mode -1)
(add-to-list 'load-path "~/.emacs.d/loadins")
(when (eq system-type 'darwin)
(load "darwin.el"))
@ -31,9 +32,18 @@
(load "hooks.el")
(load "projectile.el")
(load "text-vars.el")
(load "graphical.el")
(load "themeing.el")
(elscreen-start)
(evil-mode 1)
(editorconfig-mode 1)
(projectile-mode +1)
(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 :background "#000000" :foreground "#bbe0f0" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 181 :width normal :foundry "nil" :family "Source Code Pro"))))
'(bold ((t (:weight bold))))
'(variable-pitch ((t (:inherit nil :stipple nil :background "#000000" :foreground "#bbe0f0" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 181 :width normal :foundry "nil" :family "Source Sans Pro")))))

View File

@ -10,8 +10,4 @@
(tool-bar-mode -1)
(scroll-bar-mode -1)
(toggle-frame-fullscreen)
(defun transparency (value)
"Sets the transparency of the frame window. 0=transparent/100=opaque"
(interactive "nTransparency Value 0 - 100 opaque:")
(set-frame-parameter (selected-frame) 'alpha value))
)

View File

@ -3,7 +3,11 @@
(require 'airline-themes) ; pretty pretty <3
(powerline-default-theme)
(load-theme 'airline-molokai)
(defun transparency (value)
"Sets the transparency of the frame window. 0=transparent/100=opaque"
(interactive "nTransparency Value 0 - 100 opaque:")
(set-frame-parameter (selected-frame) 'alpha value))
)
; (add-to-list 'default-frame-alist
; '(font . "OpenDyslexicMono-18"))
; )

View File

@ -1,11 +1,11 @@
(load-theme 'abyss)
(powerline-default-theme)
(load-theme 'airline-molokai)
(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 :background "#050000" :foreground "#bbe0f0" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 181 :width normal :foundry "nil" :family "Source Code Pro"))))
'(bold ((t (:weight bold))))
'(variable-pitch ((t (:inherit nil :stipple nil :background "#050000" :foreground "#bbe0f0" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 181 :width normal :foundry "nil" :family "Source Sans Pro")))))
(load-theme 'abyss)
;(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 :background "#050000" :foreground "#bbe0f0" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 181 :width normal :foundry "nil" :family "Source Code Pro"))))
; '(bold ((t (:weight bold))))
; '(variable-pitch ((t (:inherit nil :stipple nil :background "#050000" :foreground "#bbe0f0" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 181 :width normal :foundry "nil" :family "Source Sans Pro")))))