-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is the first part of consolidating my Emacs and NixOS config into a single file. This commit refactors the whole of Emacs.org and adds more bits of prose to the configuration sections.
- Loading branch information
Showing
8 changed files
with
7,029 additions
and
2,900 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,60 @@ | ||
(defvar swarsel-file-name-handler-alist file-name-handler-alist) | ||
(defvar swarsel-vc-handled-backends vc-handled-backends) | ||
|
||
(setq gc-cons-threshold most-positive-fixnum | ||
gc-cons-percentage 0.6) | ||
gc-cons-percentage 0.6 | ||
file-name-handler-alist nil | ||
vc-handled-backends nil) | ||
|
||
(add-hook 'emacs-startup-hook | ||
(lambda () | ||
(progn | ||
(setq gc-cons-threshold (* 1000 1000 8) | ||
gc-cons-percentage 0.1 | ||
file-name-handler-alist swarsel-file-name-handler-alist | ||
vc-handled-backends swarsel-vc-handled-backends) | ||
(fset 'epg-wait-for-status 'ignore) | ||
))) | ||
|
||
(tool-bar-mode 0) | ||
(menu-bar-mode 0) | ||
(scroll-bar-mode 0) | ||
|
||
(setq frame-inhibit-implied-resize t) | ||
|
||
(setq default-frame-alist | ||
(append | ||
(list | ||
'(undecorated . t) | ||
'(min-height . 1) | ||
'(height . 42) | ||
'(min-width . 1) | ||
'(width . 100) | ||
'(vertical-scroll-bars . nil) | ||
'(internal-border-width . 10) | ||
'(tool-bar-lines . 0) | ||
'(menu-bar-lines . 0)))) | ||
|
||
(setq-default left-margin-width 1 | ||
right-margin-width 1) | ||
(setq frame-inhibit-implied-resize t | ||
ring-bell-function 'ignore | ||
use-dialog-box nil | ||
use-file-dialog nil | ||
use-short-answers t | ||
inhibit-startup-message t | ||
inhibit-splash-screen t | ||
inhibit-startup-screen t | ||
inhibit-x-resources t | ||
inhibit-startup-buffer-menu t | ||
inhibit-startup-echo-area-message user-login-name ; this needs to be set to the username or it will not have an effect | ||
comp-deferred-compilation nil ; compile all Elisp to native code immediately | ||
) | ||
|
||
(add-hook | ||
'after-make-frame-functions | ||
(defun setup-blah-keys (frame) | ||
(with-selected-frame frame | ||
(when (display-graphic-p) | ||
(define-key input-decode-map (kbd "C-i") [C-i]) | ||
(define-key input-decode-map (kbd "C-[") [C-lsb]) | ||
(define-key input-decode-map (kbd "C-m") [C-m]) | ||
)))) | ||
(setq-default left-margin-width 1 | ||
right-margin-width 1) | ||
|
||
(defun swarsel/last-buffer () (interactive) (switch-to-buffer nil)) | ||
(global-set-key (kbd "<C-m>") #'swarsel/last-buffer) | ||
(setq-default default-frame-alist | ||
(append | ||
(list | ||
'(undecorated . t) ; no title bar, borders etc. | ||
'(background-color . "#1D252C") ; load doom-citylight colors to avoid white flash | ||
'(foreground-color . "#A0B3C5") ; load doom-citylight colors to avoid white flash | ||
'(vertical-scroll-bars . nil) | ||
'(horizontal-scroll-bars . nil) | ||
'(internal-border-width . 5) | ||
'(tool-bar-lines . 0) | ||
'(menu-bar-lines . 0)))) | ||
|
||
(setq comp-deferred-compilation nil) | ||
(add-hook | ||
'after-make-frame-functions | ||
(lambda (frame) | ||
(with-selected-frame frame | ||
(when (display-graphic-p) | ||
(define-key input-decode-map (kbd "C-i") [DUMMY-i]) | ||
(define-key input-decode-map (kbd "C-[") [DUMMY-lsb]) | ||
(define-key input-decode-map (kbd "C-m") [DUMMY-m]) | ||
)))) |
Oops, something went wrong.