1
0
Fork 0

Update 2018-06-14

This commit is contained in:
Nguyễn Gia Phong 2018-06-14 12:14:14 +07:00
parent 975b62bd33
commit 9b0fd719c3
3 changed files with 10 additions and 4 deletions

2
commit.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
git commit -am "Update $(date -I)"

View File

@ -3,8 +3,6 @@
;; just comment it out by adding a semicolon to the start of the line.
;; You may delete these explanatory comments.
(package-initialize)
(require 'geiser)
(setq-default geiser-repl-use-other-window nil)
(pdf-tools-install)
(custom-set-variables
@ -35,9 +33,15 @@
:width normal))))
'(whitespace-space ((t (:foreground "gray")))))
(cua-mode)
(setq-default inhibit-splash-screen t)
(setq-default fill-column 80)
(add-hook 'prog-mode-hook 'ruler-mode)
(add-hook 'scheme-mode-hook
(lambda ()
(require 'geiser)
(setq-default geiser-repl-use-other-window nil)
(setq-default geiser-repl-query-on-kill-p nil)))
(add-hook 'python-mode-hook
(lambda ()
(setq fill-column 79)

View File

@ -115,8 +115,8 @@ if ! shopt -oq posix; then
fi
fi
# vi mode input
set -o vi
# emacs mode input
set -o emacs
export EDITOR=vim
export PAGER=less