File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 67
67
68
68
(setq cider-prompt-for-symbol nil ) ; try to jump to symbol under cursor without minibuffer prompt
69
69
(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
71
71
(setq cider-font-lock-dynamically '(macro core function var)) ; colorize usages of functions and variables from any namespace
72
72
(setq cider-repl-display-help-banner nil )
73
73
; ;;;;;;;;;;;;;;;
117
117
118
118
(setq vc-follow-symlinks t )
119
119
120
- (load-theme 'zenburn t )
121
-
122
120
(if (not (display-graphic-p ))
123
121
(progn
124
122
; ; disable current line highlight
167
165
(dolist (char-regexp alist)
168
166
(set-char-table-range composition-function-table (car char-regexp)
169
167
`([,(cdr char-regexp) 0 font-shape-gstring]))))
170
- (setq-default cursor-type 'bar )
171
168
169
+ (setq-default cursor-type 'box )
170
+
171
+ (set-face-attribute 'default nil :height 140 )
172
172
173
+ (global-set-key (kbd " C-x C-k" ) 'cider-repl-clear-buffer )
173
174
174
175
(global-set-key (kbd " C--" ) 'undo )
175
176
(global-set-key (kbd " M-c" ) 'paredit-copy-as-kill )
You can’t perform that action at this time.
0 commit comments