commit - deb0c45467d2e681e302cfe2837f85860d79ef9e
commit + b3be9eadc20075abcb91089548f3eeefc084fe47
blob - e171ab6ac6596c0cead7bbcacd9b5c2b6979aa55
blob + 4f5e0a0b501fa7f8653547ae848302e6767d69fd
--- early-init.el
+++ early-init.el
(setq frame-resize-pixelwise t)
; (setq window-resize-pixelwise t)
-(when (boundp 'tool-bar-mode) ; When in a GUI, disable tool bar;
- (tool-bar-mode -1)) ; all these tools are in the menu-bar anyway
-
(setq default-frame-alist '((fullscreen . maximized)
;; You can turn off scroll bars by uncommenting these lines:
blob - cf0530e3fffd988dbd79053bc6ce40797d7b215e
blob + 575668b0f21a54a86eb89d2f45133cb1a4e9e9de
--- extras/dev.el
+++ extras/dev.el
(use-package json-mode
:ensure t)
+(use-package nix-mode
+ :ensure t
+ :mode "\\.nix\\'")
+
;; Emacs ships with a lot of popular programming language modes. If it's not
;; built in, you're almost certain to find a mode for the language you're
;; looking for with a quick Internet search.
blob - d6a8db6dc1d4f745ebe81c51d3cf0c3962231715
blob + ad200dea0e7dea7891364c70059a70b846c10e90
--- extras/vim-like.el
+++ extras/vim-like.el
(setq evil-undo-system 'undo-redo)
;; Enable this if you want C-u to scroll up, more like pure Vim
- ;(setq evil-want-C-u-scroll t)
+ (setq evil-want-C-u-scroll t)
:config
(evil-mode)
blob - 07739a5ad7200ee03f61747288228a8dfca671f0
blob + 21a16c354ceac157bf9f2e6fa670d4eef7071fb9
--- init.el
+++ init.el
;; Org-mode configuration
;; WARNING: need to customize things inside the elisp file before use! See
;; the file extras/org-intro.txt for help.
-;(load-file (expand-file-name "extras/org.el" user-emacs-directory))
+(load-file (expand-file-name "extras/org.el" user-emacs-directory))
;; Email configuration in Emacs
;; WARNING: needs the `mu' program installed; see the elisp file for more