Skip to content

Commit

Permalink
refactor: update default values of proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
seagle0128 committed Dec 4, 2024
1 parent 90958a6 commit 6b91221
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions custom-example.el
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
;; (setq centaur-logo nil) ; Logo file or nil (official logo)
;; (setq centaur-full-name "user name") ; User full name
;; (setq centaur-mail-address "[email protected]") ; Email address
;; (setq centaur-proxy "127.0.0.1:7890") ; HTTP/HTTPS proxy
;; (setq centaur-socks-proxy "127.0.0.1:7890") ; SOCKS proxy
;; (setq centaur-proxy "127.0.0.1:7897") ; HTTP/HTTPS proxy
;; (setq centaur-socks-proxy "127.0.0.1:7897") ; SOCKS proxy
;; (setq centaur-server nil) ; Enable `server-mode' or not: t or nil
;; (setq centaur-icon nil) ; Display icons or not: t or nil
;; (setq centaur-package-archives 'melpa) ; Package repo: melpa, bfsu, iscas, netease, sjtu, tencent, tuna or ustc
Expand Down
4 changes: 2 additions & 2 deletions lisp/init-custom.el
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@
:group 'centaur
:type 'string)

(defcustom centaur-proxy "127.0.0.1:1087"
(defcustom centaur-proxy "127.0.0.1:7897"
"Set HTTP/HTTPS proxy."
:group 'centaur
:type 'string)

(defcustom centaur-socks-proxy "127.0.0.1:1086"
(defcustom centaur-socks-proxy "127.0.0.1:7897"
"Set SOCKS proxy."
:group 'centaur
:type 'string)
Expand Down

0 comments on commit 6b91221

Please sign in to comment.