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
#+TITLE: emacs config
#+OPTIONS: toc:nil
@ -44,17 +43,17 @@ r
#+BEGIN_SRC emacs-lisp
(require 'package)
(let* ((no-ssl (and (memq system-type '(windows-nt ms-dos))
(not (gnutls-available-p))))
(proto (if no-ssl "http" "https")))
(not (gnutls-available-p))))
(proto (if no-ssl "http" "https")))
;; Comment/uncomment these two lines to enable/disable MELPA and MELPA Stable as desired
(add-to-list 'package-archives (cons "melpa" (concat proto "://melpa.org/packages/")) t)
;;(add-to-list 'package-archives (cons "melpa-stable" (concat proto "://stable.melpa.org/packages/")) t)
(when (< emacs-major-version 24)
;; For important compatibility libraries like cl-lib
(add-to-list 'package-archives '("gnu" . (concat proto "://elpa.gnu.org/packages/")))))
;; For important compatibility libraries like cl-lib
(add-to-list 'package-archives '("gnu" . (concat proto "://elpa.gnu.org/packages/")))))
(if (< emacs-major-version 27)
(package-initialize))
(package-initialize))
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
@ -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)
@ -242,27 +240,27 @@ Including indent-buffer, which should not be called automatically on save."
(custom-set-faces
'(org-block
((t (:background "#333")))))
((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"))
(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)))
(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)))
(custom-theme-set-faces 'user
`(org-level-8 ((t (,@headline ,@variable-tuple))))
`(org-level-7 ((t (,@headline ,@variable-tuple))))
`(org-level-6 ((t (,@headline ,@variable-tuple))))
`(org-level-5 ((t (,@headline ,@variable-tuple))))
`(org-level-4 ((t (,@headline ,@variable-tuple :height 1))))
`(org-level-3 ((t (,@headline ,@variable-tuple :height 1.1))))
`(org-level-2 ((t (,@headline ,@variable-tuple :height 1.3))))
`(org-level-1 ((t (,@headline ,@variable-tuple :height 1.5))))
`(org-document-title ((t (,@headline ,@variable-tuple :height 1.5 :underline nil))))))
`(org-level-8 ((t (,@headline ,@variable-tuple))))
`(org-level-7 ((t (,@headline ,@variable-tuple))))
`(org-level-6 ((t (,@headline ,@variable-tuple))))
`(org-level-5 ((t (,@headline ,@variable-tuple))))
`(org-level-4 ((t (,@headline ,@variable-tuple :height 1))))
`(org-level-3 ((t (,@headline ,@variable-tuple :height 1.1))))
`(org-level-2 ((t (,@headline ,@variable-tuple :height 1.3))))
`(org-level-1 ((t (,@headline ,@variable-tuple :height 1.5))))
`(org-document-title ((t (,@headline ,@variable-tuple :height 1.5 :underline nil))))))
#+END_SRC
** AucTeX
This basically opens zathura when compiling with auctex (C-c C-a)
@ -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]]