summaryrefslogtreecommitdiff
path: root/emacs/custom/fcuny-settings.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-01-04 19:52:04 -0800
committerFranck Cuny <franck@fcuny.net>2021-01-04 19:52:04 -0800
commit88ab401adc83bea6e1f571c54093dbc7f521e080 (patch)
treee2ae9336119ee36707b0e76a6592f4fc8503a4ef /emacs/custom/fcuny-settings.el
parentgit: store configuration under XDG_CONFIG_HOME (diff)
downloademacs.d-88ab401adc83bea6e1f571c54093dbc7f521e080.tar.gz
emacs: rename the directory
Diffstat (limited to 'emacs/custom/fcuny-settings.el')
-rw-r--r--emacs/custom/fcuny-settings.el56
1 files changed, 56 insertions, 0 deletions
diff --git a/emacs/custom/fcuny-settings.el b/emacs/custom/fcuny-settings.el
new file mode 100644
index 0000000..a5ecc87
--- /dev/null
+++ b/emacs/custom/fcuny-settings.el
@@ -0,0 +1,56 @@
+(require 'fcuny-vars)
+
+;; set utf-8 as the default encoding
+(prefer-coding-system 'utf-8-unix)
+(setq locale-coding-system 'utf-8)
+(set-language-environment 'utf-8)
+(set-terminal-coding-system 'utf-8)
+(set-keyboard-coding-system 'utf-8)
+
+;; alias yes-or-no to y-or-n
+(fset 'yes-or-no-p 'y-or-n-p)
+
+(setq auto-save-default nil) ;; don't auto save files
+(setq auto-save-list-file-prefix nil) ;; no backups
+(setq create-lockfiles nil) ;; don't use a lock file
+(setq custom-file fcuny/custom-settings) ;; where to save custom settings
+(setq make-backup-files nil) ;; really no backups
+(setq minibuffer-message-timeout 0.5) ;; How long to display an echo-area message
+(setq next-screen-context-lines 5) ;; scroll 5 lines at a time
+(setq require-final-newline t) ;; ensure newline exists at the end of the file
+(setq ring-bell-function 'ignore) ;; really no bell
+(setq tab-always-indent 'complete) ;; when using TAB, always indent
+(setq visible-bell nil) ;; no bell
+(setq column-number-mode t) ;; show column number in the mode line
+(setq-default indent-tabs-mode nil) ;; turn off tab indentation
+(setq-default cursor-type 'hbar) ;; cursor is a horizontal bar
+(setq vc-handled-backends nil) ;; don't use the VC backend, it's too slow with source
+(setq-default delete-by-moving-to-trash t) ;; delete files by moving them to the trash
+(setq initial-scratch-message "") ;; empty scratch buffer
+
+(custom-set-variables
+ '(use-file-dialog nil)
+ '(use-dialog-box nil)
+ '(inhibit-startup-screen t)
+ '(inhibit-startup-message t)
+ '(inhibit-startup-echo-area-message t))
+
+(setq user-full-name "franck cuny"
+ user-mail-address "franck@fcuny.net"
+ add-log-mailing-address "franck@fcuny.net")
+
+(use-package midnight
+ :config
+ (midnight-mode t))
+
+(use-package server
+ :hook (after-init . server-start))
+
+(use-package exec-path-from-shell
+ :ensure t
+ :init (exec-path-from-shell-initialize)
+ (when (memq window-system '(mac ns))
+ (exec-path-from-shell-initialize))
+ (exec-path-from-shell-copy-env "GOPATH"))
+
+(provide 'fcuny-settings)