Skip to content

Instantly share code, notes, and snippets.

@serkanaltuntas
Created December 27, 2020 11:51
Show Gist options
  • Save serkanaltuntas/c13f282022bdc8d5bd7ddf97b745b21b to your computer and use it in GitHub Desktop.
Save serkanaltuntas/c13f282022bdc8d5bd7ddf97b745b21b to your computer and use it in GitHub Desktop.
(setq auto-save-default nil)
(setq make-backup-files nil)
(setq default-directory "~/")
(setq command-line-default-directory "~/")
(package-initialize)
(require 'package)
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
(elpy-enable) ;; for Python development
(add-to-list 'exec-path "/usr/local/bin")
(set-keyboard-coding-system nil)
(toggle-frame-fullscreen)
(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.
'(ansi-color-faces-vector
[default default default italic underline success warning error])
'(custom-enabled-themes '(misterioso))
'(package-selected-packages '(elpy)))
(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.
)
(set-face-attribute 'default nil :height 200) ;; font size:20
(setq inhibit-startup-screen t) ;; no welcome buffer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment