dotfiles

[void/arch] linux dotfiles
git clone git://git.mdnr.space/dotfiles
Log | Files | Refs

init.el (941B)


      1 (setq costum-file "~/.emacs.d/costum-file.el")
      2 (tool-bar-mode 0)
      3 (menu-bar-mode 0)
      4 (set-frame-parameter (selected-frame) 'alpha '(90 . 90))
      5 (add-to-list 'default-frame-alist '(alpha . (90 . 90)))
      6 (load-theme 'gruber-darker t)
      7 (setq display-line-numbers-type 'relative)
      8 (global-display-line-numbers-mode)
      9 (set-face-attribute 'default nil :font "Iosevka-10")
     10 (ido-mode 1)
     11 (setq inhibit-splash-screen t)
     12 
     13 (custom-set-variables
     14  ;; custom-set-variables was added by Custom.
     15  ;; If you edit it by hand, you could mess it up, so be careful.
     16  ;; Your init file should contain only one such instance.
     17  ;; If there is more than one, they won't work right.
     18  '(package-selected-packages '(gruber-darker-theme)))
     19 (custom-set-faces
     20  ;; custom-set-faces was added by Custom.
     21  ;; If you edit it by hand, you could mess it up, so be careful.
     22  ;; Your init file should contain only one such instance.
     23  ;; If there is more than one, they won't work right.
     24  )