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
@ -44,17 +43,17 @@ r
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(require 'package) (require 'package)
(let* ((no-ssl (and (memq system-type '(windows-nt ms-dos)) (let* ((no-ssl (and (memq system-type '(windows-nt ms-dos))
(not (gnutls-available-p)))) (not (gnutls-available-p))))
(proto (if no-ssl "http" "https"))) (proto (if no-ssl "http" "https")))
;; Comment/uncomment these two lines to enable/disable MELPA and MELPA Stable as desired ;; 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" (concat proto "://melpa.org/packages/")) t)
;;(add-to-list 'package-archives (cons "melpa-stable" (concat proto "://stable.melpa.org/packages/")) t) ;;(add-to-list 'package-archives (cons "melpa-stable" (concat proto "://stable.melpa.org/packages/")) t)
(when (< emacs-major-version 24) (when (< emacs-major-version 24)
;; For important compatibility libraries like cl-lib ;; For important compatibility libraries like cl-lib
(add-to-list 'package-archives '("gnu" . (concat proto "://elpa.gnu.org/packages/"))))) (add-to-list 'package-archives '("gnu" . (concat proto "://elpa.gnu.org/packages/")))))
(if (< emacs-major-version 27) (if (< emacs-major-version 27)
(package-initialize)) (package-initialize))
(unless (package-installed-p 'use-package) (unless (package-installed-p 'use-package)
(package-refresh-contents) (package-refresh-contents)
(package-install 'use-package)) (package-install 'use-package))
@ -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)
@ -242,27 +240,27 @@ Including indent-buffer, which should not be called automatically on save."
(custom-set-faces (custom-set-faces
'(org-block '(org-block
((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)))
(custom-theme-set-faces 'user (custom-theme-set-faces 'user
`(org-level-8 ((t (,@headline ,@variable-tuple)))) `(org-level-8 ((t (,@headline ,@variable-tuple))))
`(org-level-7 ((t (,@headline ,@variable-tuple)))) `(org-level-7 ((t (,@headline ,@variable-tuple))))
`(org-level-6 ((t (,@headline ,@variable-tuple)))) `(org-level-6 ((t (,@headline ,@variable-tuple))))
`(org-level-5 ((t (,@headline ,@variable-tuple)))) `(org-level-5 ((t (,@headline ,@variable-tuple))))
`(org-level-4 ((t (,@headline ,@variable-tuple :height 1)))) `(org-level-4 ((t (,@headline ,@variable-tuple :height 1))))
`(org-level-3 ((t (,@headline ,@variable-tuple :height 1.1)))) `(org-level-3 ((t (,@headline ,@variable-tuple :height 1.1))))
`(org-level-2 ((t (,@headline ,@variable-tuple :height 1.3)))) `(org-level-2 ((t (,@headline ,@variable-tuple :height 1.3))))
`(org-level-1 ((t (,@headline ,@variable-tuple :height 1.5)))) `(org-level-1 ((t (,@headline ,@variable-tuple :height 1.5))))
`(org-document-title ((t (,@headline ,@variable-tuple :height 1.5 :underline nil)))))) `(org-document-title ((t (,@headline ,@variable-tuple :height 1.5 :underline nil))))))
#+END_SRC #+END_SRC
** AucTeX ** AucTeX
This basically opens zathura when compiling with auctex (C-c C-a) This basically opens zathura when compiling with auctex (C-c C-a)
@ -271,7 +269,7 @@ Including indent-buffer, which should not be called automatically on save."
(setq TeX-source-correlate-method 'synctex) (setq TeX-source-correlate-method 'synctex)
(TeX-source-correlate-mode) (TeX-source-correlate-mode)
(setq TeX-source-correlate-start-server t) (setq TeX-source-correlate-start-server t)
(add-to-list 'TeX-view-program-selection (add-to-list 'TeX-view-program-selection
'(output-pdf "Zathura"))) '(output-pdf "Zathura")))
#+END_SRC #+END_SRC
@ -289,7 +287,7 @@ Including indent-buffer, which should not be called automatically on save."
:ensure t :ensure t
:init :init
(global-set-key "\C-s" 'swiper)) (global-set-key "\C-s" 'swiper))
#+END_SRC #+END_SRC
** Company and Irony ** Company and Irony
Some shit for autocompletion and that kind of shit. Some shit for autocompletion and that kind of shit.
@ -366,7 +364,7 @@ Including indent-buffer, which should not be called automatically on save."
:ensure t :ensure t
:init :init
(add-hook 'c-mode-hook 'c-turn-on-eldoc-mode)) (add-hook 'c-mode-hook 'c-turn-on-eldoc-mode))
#+END_SRC #+END_SRC
** Beacon mode ** Beacon mode
@ -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]]