aboutsummaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init.org17
-rw-r--r--emacs/.emacs.d/init/oni-company-init.org5
2 files changed, 15 insertions, 7 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org
index b0162eb..8052c76 100644
--- a/emacs/.emacs.d/init.org
+++ b/emacs/.emacs.d/init.org
@@ -171,6 +171,16 @@ To start off, first I need to enable lexical binding.
(setq-default tab-width 4)
#+END_SRC
+* Inhibit startup screen
+
+ I've been using Emacs long enough not to need the startup screen
+ anymore. I don't see it on my PC where I start Emacs in daemon mode,
+ but on my laptop I always start it normally, so it gets in the way.
+
+ #+BEGIN_SRC emacs-lisp
+ (setq inhibit-startup-screen t)
+ #+END_SRC
+
* Font
Set the default font to a more pleasing one, in my opinion, with a
@@ -896,13 +906,6 @@ To start off, first I need to enable lexical binding.
Cider is like Slime for Common Lisp. This configuration is copied
from the one provided by Clojure for the Brave and True.
- Provides minibuffer documentation for the code you're typing into
- the repl.
-
- #+BEGIN_SRC emacs-lisp
- (add-hook 'cider-mode-hook 'cider-turn-on-eldoc-mode)
- #+END_SRC
-
Go right to the REPL buffer when it's finished connecting
#+BEGIN_SRC emacs-lisp
diff --git a/emacs/.emacs.d/init/oni-company-init.org b/emacs/.emacs.d/init/oni-company-init.org
index d552d57..6524d5f 100644
--- a/emacs/.emacs.d/init/oni-company-init.org
+++ b/emacs/.emacs.d/init/oni-company-init.org
@@ -1,5 +1,10 @@
#+TITLE: Company mode configuration
+#+BEGIN_SRC emacs-lisp
+ (require 'company)
+ (require 'diminish)
+#+END_SRC
+
Don't show that company mode is enabled in the minibuffer.
#+BEGIN_SRC emacs-lisp