Skip to content

Commit dba2fb6

Browse files
committed
cx-ck
1 parent 131f0e3 commit dba2fb6

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Diff for: personal/init.el

+5-4
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767

6868
(setq cider-prompt-for-symbol nil) ; try to jump to symbol under cursor without minibuffer prompt
6969
(setq cider-repl-use-pretty-printing t) ; use pretty print in repl
70-
(setq cider-prompt-save-file-on-load 'always-save) ; when reloading file just save without prompting
70+
(setq cider-save-file-on-load t) ; when reloading file just save without prompting
7171
(setq cider-font-lock-dynamically '(macro core function var)) ; colorize usages of functions and variables from any namespace
7272
(setq cider-repl-display-help-banner nil)
7373
;;;;;;;;;;;;;;;;
@@ -117,8 +117,6 @@
117117

118118
(setq vc-follow-symlinks t)
119119

120-
(load-theme 'zenburn t)
121-
122120
(if (not (display-graphic-p))
123121
(progn
124122
;; disable current line highlight
@@ -167,9 +165,12 @@
167165
(dolist (char-regexp alist)
168166
(set-char-table-range composition-function-table (car char-regexp)
169167
`([,(cdr char-regexp) 0 font-shape-gstring]))))
170-
(setq-default cursor-type 'bar)
171168

169+
(setq-default cursor-type 'box)
170+
171+
(set-face-attribute 'default nil :height 140)
172172

173+
(global-set-key (kbd "C-x C-k") 'cider-repl-clear-buffer)
173174

174175
(global-set-key (kbd "C--") 'undo)
175176
(global-set-key (kbd "M-c") 'paredit-copy-as-kill)

0 commit comments

Comments
 (0)