Skip to content

Commit 236e16b

Browse files
authored
user.el: windows stuff & at-point file search fix
1 parent f23a433 commit 236e16b

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.emacs.d/user.el

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
1+
;; windows specific things
2+
(if (string-equal (getenv "OS") "Windows_NT")
3+
(begin (require 'server)
4+
(unless (server-running-p)
5+
(server-start))
6+
(setq visible-bell 1)))
7+
18
;; *scratch*
29
(setq initial-major-mode 'org-mode)
310

411
;; pretty
512
(set-default-font "Fira Code")
613

14+
;; ignore this infuriating at-point file search
15+
;; https://emacs.stackexchange.com/a/5331
16+
(setq ido-use-filename-at-point nil)
17+
(setq ido-use-url-at-point nil)
18+
719
;(use-package doom-themes
820
; :ensure t
921
; :init

0 commit comments

Comments
 (0)