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
60
config.org
60
config.org
|
@ -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)
|
||||
|
@ -271,7 +269,7 @@ Including indent-buffer, which should not be called automatically on save."
|
|||
(setq TeX-source-correlate-method 'synctex)
|
||||
(TeX-source-correlate-mode)
|
||||
(setq TeX-source-correlate-start-server t)
|
||||
|
||||
|
||||
(add-to-list 'TeX-view-program-selection
|
||||
'(output-pdf "Zathura")))
|
||||
#+END_SRC
|
||||
|
@ -289,7 +287,7 @@ Including indent-buffer, which should not be called automatically on save."
|
|||
:ensure t
|
||||
:init
|
||||
(global-set-key "\C-s" 'swiper))
|
||||
|
||||
|
||||
#+END_SRC
|
||||
** Company and Irony
|
||||
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
|
||||
:init
|
||||
(add-hook 'c-mode-hook 'c-turn-on-eldoc-mode))
|
||||
|
||||
|
||||
#+END_SRC
|
||||
|
||||
** Beacon mode
|
||||
|
@ -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