neotree -> treemacs (and terminus maybe?) not sure about that

This commit is contained in:
qorg11 2020-07-22 06:16:37 +02:00
parent f3c9869d0f
commit 837651584d
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -1,4 +1,3 @@
r
#+AUTHOR: qorg11 #+AUTHOR: qorg11
#+TITLE: emacs config #+TITLE: emacs config
#+OPTIONS: toc:nil #+OPTIONS: toc:nil
@ -148,14 +147,13 @@ Including indent-buffer, which should not be called automatically on save."
(scroll-bar-mode -1) (scroll-bar-mode -1)
(tool-bar-mode -1) (tool-bar-mode -1)
(menu-bar-mode -1) (menu-bar-mode -1)
(set-frame-font "IBM Plex Mono 13" nil t) (set-frame-font "Terminus 14" nil t)
(load-file "~/.emacs.d/markup.el") (load-file "~/.emacs.d/markup.el")
(use-package smex (use-package smex
:ensure t :ensure t
:init :init
(global-set-key (kbd "M-x") 'smex)) (global-set-key (kbd "M-x") 'smex))
(setq-default major-mode 'text-mode) (setq-default major-mode 'text-mode)
#+END_SRC #+END_SRC
*** Space to - (Like normal M-x) *** Space to - (Like normal M-x)
@ -245,10 +243,10 @@ Including indent-buffer, which should not be called automatically on save."
((t (:background "#333"))))) ((t (:background "#333")))))
;; Org mode fixes ;; Org mode fixes
(let* ((variable-tuple (cond ((x-list-fonts "Monospace") '(:font "Monospace")) (let* ((variable-tuple (cond ((x-list-fonts "Terminus") '(:font "Terminus"))
((x-list-fonts "Lucida Grande") '(:font "Lucida Grande")) ((x-list-fonts "Terminus") '(:font "Terminus"))
((x-list-fonts "Verdana") '(:font "Verdana")) ((x-list-fonts "Terminus") '(:font "Terminus"))
((x-family-fonts "Sans Serif") '(:family "Sans Serif")) ((x-family-fonts "Terminus") '(:family "Terminus"))
(nil (warn "Cannot find a Sans Serif Font. Install Source Sans Pro.")))) (nil (warn "Cannot find a Sans Serif Font. Install Source Sans Pro."))))
(base-font-color (face-foreground 'default nil 'default)) (base-font-color (face-foreground 'default nil 'default))
(headline `(:inherit default :weight bold :foreground ,base-font-color))) (headline `(:inherit default :weight bold :foreground ,base-font-color)))
@ -408,10 +406,10 @@ Including indent-buffer, which should not be called automatically on save."
** Neotree ** Neotree
Emacs sidebar. soykafy but it works Emacs sidebar. soykafy but it works
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package neotree (use-package treemacs
:ensure t :ensure t
:init :init
(global-set-key [f8] 'neotree-toggle)) (global-set-key [f8] 'treemacs))
#+END_SRC #+END_SRC
* ido * ido
Ido is a replacement for keybindings such as C-x C-f and C-x b. Here Ido is a replacement for keybindings such as C-x C-f and C-x b. Here
@ -461,3 +459,5 @@ Including indent-buffer, which should not be called automatically on save."
* Screenshot * Screenshot
[[./img/screen.png]] [[./img/screen.png]]