neotree -> treemacs (and terminus maybe?) not sure about that
This commit is contained in:
parent
f3c9869d0f
commit
837651584d
1 changed files with 30 additions and 30 deletions
18
config.org
18
config.org
|
@ -1,4 +1,3 @@
|
|||
r
|
||||
#+AUTHOR: qorg11
|
||||
#+TITLE: emacs config
|
||||
#+OPTIONS: toc:nil
|
||||
|
@ -148,14 +147,13 @@ Including indent-buffer, which should not be called automatically on save."
|
|||
(scroll-bar-mode -1)
|
||||
(tool-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")
|
||||
(use-package smex
|
||||
:ensure t
|
||||
:init
|
||||
(global-set-key (kbd "M-x") 'smex))
|
||||
|
||||
|
||||
(setq-default major-mode 'text-mode)
|
||||
#+END_SRC
|
||||
*** Space to - (Like normal M-x)
|
||||
|
@ -245,10 +243,10 @@ Including indent-buffer, which should not be called automatically on save."
|
|||
((t (:background "#333")))))
|
||||
|
||||
;; Org mode fixes
|
||||
(let* ((variable-tuple (cond ((x-list-fonts "Monospace") '(:font "Monospace"))
|
||||
((x-list-fonts "Lucida Grande") '(:font "Lucida Grande"))
|
||||
((x-list-fonts "Verdana") '(:font "Verdana"))
|
||||
((x-family-fonts "Sans Serif") '(:family "Sans Serif"))
|
||||
(let* ((variable-tuple (cond ((x-list-fonts "Terminus") '(:font "Terminus"))
|
||||
((x-list-fonts "Terminus") '(:font "Terminus"))
|
||||
((x-list-fonts "Terminus") '(:font "Terminus"))
|
||||
((x-family-fonts "Terminus") '(:family "Terminus"))
|
||||
(nil (warn "Cannot find a Sans Serif Font. Install Source Sans Pro."))))
|
||||
(base-font-color (face-foreground 'default nil 'default))
|
||||
(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
|
||||
Emacs sidebar. soykafy but it works
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package neotree
|
||||
(use-package treemacs
|
||||
:ensure t
|
||||
:init
|
||||
(global-set-key [f8] 'neotree-toggle))
|
||||
(global-set-key [f8] 'treemacs))
|
||||
#+END_SRC
|
||||
* ido
|
||||
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
|
||||
|
||||
[[./img/screen.png]]
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue