Emacs: Don't start TCP server.

This commit is contained in:
tastytea 2020-11-29 14:09:42 +01:00
parent b0c80b14be
commit 8373e9afd7
1 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
;;; server.el --- Set up network stuff.. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-11-29T13:41:06+0100>
;; Time-stamp: <2020-11-29T14:09:27+0100>
;;; Commentary:
@ -43,11 +43,11 @@
:if (not (or (equal (user-real-uid) 0)
(getenv "SSH_CONNECTION")))
:functions (server-running-p)
:init (setq
server-use-tcp t
server-port 51313
server-auth-key ; 64 chars, saved in ~/.emacs.d/server/server.
"phahw2ohVoh0oopheish7IVie9desh8aequeenei3uo8wahShe%thuadaeNa4ieh")
;; :init (setq
;; server-use-tcp t
;; server-port 51313
;; server-auth-key ; 64 chars, saved in ~/.emacs.d/server/server.
;; "phahw2ohVoh0oopheish7IVie9desh8aequeenei3uo8wahShe%thuadaeNa4ieh")
:config (unless (eq (server-running-p) t)
(server-start)))