From: Jude DaShiell <jdashiel@panix.com>
To: jonetsu <jonetsu@teksavvy.com>, help-gnu-emacs@gnu.org
Subject: Re: Is it possible to start emacs w/o a split frame ?
Date: Wed, 20 Feb 2019 13:10:57 -0500 [thread overview]
Message-ID: <alpine.NEB.2.21.1902201310360.3681@panix1.panix.com> (raw)
In-Reply-To: <20190220125210.4930c914@mistral>
On Wed, 20 Feb 2019, jonetsu wrote:
> Date: Wed, 20 Feb 2019 12:52:10
> From: jonetsu <jonetsu@teksavvy.com>
> To: help-gnu-emacs@gnu.org
> Subject: Re: Is it possible to start emacs w/o a split frame ?
>
> On Wed, 20 Feb 2019 18:34:00 +0100
> <tomas@tuxteam.de> wrote:
>
> > (setq inhibit-splash-screen t)
>
> Thanks !
>
>
Script started on Wed 20 Feb 2019 01:08:38 PM EST
jude[~]$ cat .emacs
(require 'package)
(package-initialize)
(setq inhibit-splash-screen t)
;; Show keystrokes
(setq echo-keystrokes 0.02)
;; loose hourglass for text terminals without mouse
(setq display-hourglass nil)
(add-to-list 'package-archives '("marmalade" . "https://marmalade-repo.org/packages/"))
(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/") t)
(require 'saveplace)
;; optional keyboard short-cut
(global-set-key "\C-xm" 'browse-url-at-point)
(setq fill-column 72)
(setq use-dialog-box nil)
(setq delete-old-versions t)
(add-hook 'message-mode-hook 'turn-on-orgtbl)
(setq org-table-use-standard-references t)
(setq-default display-line-numbers 'relative)
jude[~]$ emacs --version
GNU Emacs 25.3.1
Copyright (C) 2017 Free Software Foundation, Inc.
GNU Emacs comes with ABSOLUTELY NO WARRANTY.
You may redistribute copies of GNU Emacs
under the terms of the GNU General Public License.
For more information about these matters, see the file named COPYING.
jude[~]$ emacs .emacs
^[[?25h^[[?8c^[[H^[[J^[[56d^[[K^[[?25h^[[?0c^[[39;49m
^[[?25h^[[?8c^[[H^[[J^[[55d^[[?25l^[[?1c^[[7m-UUU:----F1 ^[[0m^[[39;49m^[[27m^[[7m^[[1m*scratch* ^[[0m^[[39;49m^[[27m^[[7m All L1 (Lisp Interaction) ----------------------------------------------------------------------------------------------------------------------------------------------^[[0m^[[39;49m^[[27m
^[[A^[[2d^[[?25h^[[?0c^[[?25h^[[?8c^[[56d^[[?25l^[[?1cFor information about GNU Emacs and the GNU system, type C-h C-a.^[[K^[[H^[[7mFile Edit Options Buffers Tools Emacs-Lisp Help ^[[0m^[[39;49m^[[27m
^[[A
(^[[1m^[[36mrequire^[[0m^[[39;49m '^[[35mpackage^[[39;49m)^[[K
(package-initialize)^[[K
(^[[1m^[[36msetq^[[0m^[[39;49m inhibit-splash-screen t)^[[K
^[[33m;; Show keystrokes ^[[39;49m
^[[A
(^[[1m^[[36msetq^[[0m^[[39;49m echo-keystrokes 0.02)^[[K
^[[33m;; loose hourglass for text terminals without mouse ^[[39;49m
^[[A
(^[[1m^[[36msetq^[[0m^[[39;49m display-hourglass nil)^[[K
(add-to-list 'package-archives '(^[[32m"marmalade"^[[39;49m . ^[[32m"https://marmalade-repo.org/packages/"^[[39;49m))^[[K
(add-to-list 'package-archives '(^[[32m"melpa"^[[39;49m . ^[[32m"http://melpa.milkbox.net/packages/"^[[39;49m) t)^[[K
(^[[1m^[[36mrequire^[[0m^[[39;49m '^[[35msaveplace^[[39;49m)^[[K
^[[33m;; optional keyboard short-cut ^[[39;49m
^[[A
(global-set-key ^[[32m"\C-xm"^[[39;49m 'browse-url-at-point)^[[K
(^[[1m^[[36msetq^[[0m^[[39;49m fill-column 72)^[[K
(^[[1m^[[36msetq^[[0m^[[39;49m use-dialog-box nil)^[[K
(^[[1m^[[36msetq^[[0m^[[39;49m delete-old-versions t)^[[K
(add-hook 'message-mode-hook 'turn-on-orgtbl)^[[K
(^[[1m^[[36msetq^[[0m^[[39;49m org-table-use-standard-references t)^[[K
(^[[1m^[[36msetq-default^[[0m^[[39;49m display-line-numbers 'relative)^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[K
^[[7m-UU-:----F1 ^[[0m^[[39;49m^[[27m^[[7m^[[1m.emacs ^[[0m^[[39;49m^[[27m^[[7m All L1 (Emacs-Lisp) ----------------------------------------------------------------------------------------------------------------------------------------------------^[[0m^[[39;49m^[[27m
^[[A^[[2d^[[?25h^[[?0c^[[?25h^[[?8c^[[56d^[[K^[[2d^[[56d^[[?25l^[[?1cC-x^[[H
^[[?25h^[[?0c^[[?25h^[[?8c^[[56;4H^[[?25l^[[?1c-^[[H
^[[?25h^[[?0c^[[?25h^[[?8c^[[56;4H^[[?25l^[[?1c C-c^[[H
^[[?25h^[[?0c^[[?25h^[[?8c^[[56d^[[K^[[2d^[[56d^[[K^[[?25h^[[?0c^[[39;49mjude[~]$ exit
exit
Script done on Wed 20 Feb 2019 01:09:22 PM EST
--
next prev parent reply other threads:[~2019-02-20 18:10 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-20 17:10 Is it possible to start emacs w/o a split frame ? jonetsu
2019-02-20 17:34 ` tomas
2019-02-20 17:52 ` jonetsu
2019-02-20 18:10 ` Jude DaShiell [this message]
2019-02-20 17:44 ` Nick Dokos
2019-02-20 17:55 ` jonetsu
2019-02-20 20:43 ` Emanuel Berg
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=alpine.NEB.2.21.1902201310360.3681@panix1.panix.com \
--to=jdashiel@panix.com \
--cc=help-gnu-emacs@gnu.org \
--cc=jonetsu@teksavvy.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).