This commit is contained in:
(≧◡≦) 2022-11-15 21:27:50 +01:00
parent 12c27cc582
commit f33410e489
No known key found for this signature in database
GPG key ID: B39C0BCEE94A4A89
2 changed files with 36 additions and 76 deletions

View file

@ -1,7 +1,6 @@
#+AUTHOR: qorg11
#+TITLE: emacs config #+TITLE: emacs config
* qorg's Emacs config * suragu's Emacs config
This is my Emacs configuration. Hope you like it. This is my Emacs configuration. Hope you like it.
@ -14,33 +13,7 @@ Just copy this repository to your .emacs.d. Nothing else is needed.
- I don't want to learn doom emacs - I don't want to learn doom emacs
- I don't want to learn spacemacs - I don't want to learn spacemacs
- I don't like Vim - I don't like Vim
** About me
Here I set variables about personal information i'll use later in
this config.
#+BEGIN_SRC emacs-lisp
(setq name "qorg11")
(setq email "qorg@vxempire.xyz")
(setq website "qorg11.net")
#+END_SRC
** Dependencies
The only no emacs related dependence in this configuration is the
IBM Plex Mono font. Install it from your distribution packages.
You can change it before opening Emacs with this configuration for
the first time.
For irony-mode (C autocompletion) irony-sever must be
installed. You can install it with M-x irony-install-server or via
distribution's packages, in Debian case, apt install irony-server.
Using M-x irony-install-server requires cmake and a lot of
dependences I'm to lazy to install.
** Configuration
Yeah, this configuration file has a configuration, ironic ha?
#+BEGIN_SRC emacs-lisp
(setq i-just-use-emacs-to-be-cool nil) ;; Repleace to true to use EVIL
#+END_SRC
* gc * gc
#+begin_src emacs-lisp #+begin_src emacs-lisp
;; Minimize garbage collection during startup ;; Minimize garbage collection during startup
@ -112,6 +85,7 @@ it. I don't think i'd ever use the overwritten.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(global-set-key (kbd "M-m") 'mark-whole-buffer) (global-set-key (kbd "M-m") 'mark-whole-buffer)
(global-set-key (kbd "C-c m") 'man) (global-set-key (kbd "C-c m") 'man)
(define-key org-mode-map (kbd "C-c p") 'org-publish-current-file)
#+END_SRC #+END_SRC
* No idea * No idea
@ -161,6 +135,21 @@ Functions I wrote because emacs lisp is cool and useful.
(switch-to-buffer "*dashboard*") (switch-to-buffer "*dashboard*")
(dashboard-mode) (dashboard-mode)
(dashboard-refresh-buffer)) (dashboard-refresh-buffer))
(setq org-publish-project-alist
'(("suragu.net"
:base-directory "~/docs/qorg_qorg/"
:publishing-directory "~/docs/mounts/sites/suragu.net"
:section-numbers nil
:publishing-function org-html-publish-to-html
:table-of-contents nil
:recursive t
)))
(defun make-website ()
(interactive)
(org-publish "suragu.net"))
#+end_src #+end_src
* Programs * Programs
Emacs customization, Here is where most of the configuration is. Emacs customization, Here is where most of the configuration is.
@ -171,7 +160,7 @@ The basic emacs persdonalization lol
(menu-bar-mode -1) (menu-bar-mode -1)
(scroll-bar-mode -1) (scroll-bar-mode -1)
(global-hl-line-mode) (global-hl-line-mode)
(set-face-background hl-line-face "blue12") (set-face-background hl-line-face "gray20")
(setq-default cursor-type 'box) (setq-default cursor-type 'box)
(blink-cursor-mode 1) (blink-cursor-mode 1)
(setq-default major-mode 'text-mode) (setq-default major-mode 'text-mode)
@ -231,9 +220,7 @@ It should use your default shell by default.
#+END_SRC #+END_SRC
** Theme ** Theme
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package base16-theme (load-theme 'misterioso t)
:ensure t
:init(load-theme 'base16-irblack t))
(set-cursor-color "purple") (set-cursor-color "purple")
#+end_src #+end_src
@ -255,29 +242,13 @@ Some shit for autocompletion and that kind of shit.
:ensure t :ensure t
:config :config
(setq company-idle-delay 0) (setq company-idle-delay 0)
(setq company-minimum-prefix-length 3) (setq company-minimum-prefix-length 1)
(global-company-mode)) (global-company-mode))
(with-eval-after-load 'company (with-eval-after-load 'company
(define-key company-active-map (kbd "M-n") nil) (define-key company-active-map (kbd "M-n") nil)
(define-key company-active-map (kbd "M-p") nil) (define-key company-active-map (kbd "M-p") nil)
(define-key company-active-map (kbd "C-n") #'company-select-next) (define-key company-active-map (kbd "C-n") #'company-select-next)
(define-key company-active-map (kbd "C-p") #'company-select-previous)) (define-key company-active-map (kbd "C-p") #'company-select-previous))
(use-package company-irony
:defer 1
:ensure t
:config
(require 'company)
(add-to-list 'company-backends 'company-irony))
(use-package irony
:defer 1
:ensure t
:config
(add-hook 'c-mode-hook 'irony-mode)
(add-hook 'irony-mode-hook 'irony-cdb-autosetup-compile-options))
(with-eval-after-load 'company
(add-hook 'c-mode-hook 'company-mode))
#+END_SRC #+END_SRC
** Programming language things ** Programming language things
*** Lisp *** Lisp
@ -294,10 +265,12 @@ them.
(setq lisp-indent-offset 5) (setq lisp-indent-offset 5)
#+END_SRC #+END_SRC
*** Perl *** Perl
Cperl-mode is better than perl-mode. You can't change my mind. I use LSP for perl.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(defalias 'perl-mode 'cperl-mode) (setq perl-indent-level 5)
(setq cperl-indent-level 5) (add-hook 'perl-mode-hook (lambda ()
(lsp)
(irony-mode -1)))
#+END_SRC #+END_SRC
*** C* *** C*
This use c-eldoc mode so it prints the function's prototype in the This use c-eldoc mode so it prints the function's prototype in the
@ -345,11 +318,7 @@ Raku, the cornerstone of any well designed programming language.
org-html-postamble nil org-html-postamble nil
org-html-use-infojs nil) org-html-use-infojs nil)
#+end_src #+end_src
**** Org-agenda
>Le attention deficit destroyer
#+begin_src emacs-lisp
(setq org-agenda-files (quote ("~/Documentos/agenda.org")))
#+end_src
** Keybindings ** Keybindings
Here I put functions I won't bother to document because they're so Here I put functions I won't bother to document because they're so
simple. simple.
@ -514,8 +483,8 @@ I am tired of =M-x auto-fill-mode= in some modes
(add-hook 'text-mode-hook 'auto-fill-mode) (add-hook 'text-mode-hook 'auto-fill-mode)
(add-hook 'sgml-mode-hook 'auto-fill-mode) (add-hook 'sgml-mode-hook 'auto-fill-mode)
(add-hook 'sgml-mode-hook 'zencoding-mode) (add-hook 'sgml-mode-hook 'zencoding-mode)
(add-hook 'Man-mode-hook 'no-lines) (add-hook 'Man-mode-hook 'qorg/no-lines)
(add-hook 'speedbar-mode-hook 'no-lines) (add-hook 'speedbar-mode-hook 'qorg/no-lines)
#+end_src #+end_src
** Hungry delete ** Hungry delete
Having to delete multiple whitespaces is one of the things I hate, Having to delete multiple whitespaces is one of the things I hate,
@ -547,15 +516,6 @@ thankfully there's this thing.
(set-face-font 'org-level-3 "IBM Plex Mono 14") (set-face-font 'org-level-3 "IBM Plex Mono 14")
#+end_src #+end_src
** diff-hl
#+begin_src emacs-lisp
(use-package "diff-hl"
:ensure t
:config
(global-diff-hl-mode)
(add-hook 'magit-pre-refresh-hook 'diff-hl-magit-pre-refresh)
(add-hook 'magit-post-refresh-hook 'diff-hl-magit-post-refresh))
#+end_src
** zzz-to-char ** zzz-to-char
It's like ace-whatever but for zapping characters. It's like ace-whatever but for zapping characters.
=zap-to-char= =zap-to-char=
@ -669,10 +629,6 @@ Le ebin sidebar
:hook (dired-mode . treemacs-icons-dired-enable-once) :hook (dired-mode . treemacs-icons-dired-enable-once)
:ensure t) :ensure t)
(use-package treemacs-magit
:after (treemacs magit)
:ensure t)
(use-package treemacs-tab-bar ;;treemacs-tab-bar if you use tab-bar-mode (use-package treemacs-tab-bar ;;treemacs-tab-bar if you use tab-bar-mode
:after (treemacs) :after (treemacs)
:ensure t :ensure t
@ -685,6 +641,14 @@ Le ebin sidebar
:ensure t :ensure t
:init(projectile-mode)) :init(projectile-mode))
#+end_src
** Nyancat
Yes.
#+begin_src emacs-lisp
(use-package nyan-mode
:ensure t
:init(nyan-mode))
#+end_src #+end_src
* Helm * Helm
@ -766,10 +730,6 @@ create it in case you accidentally killed the buffer)
(setq doom-modeline-indent-info t) (setq doom-modeline-indent-info t)
(setq doom-modeline-buffer-encoding t) (setq doom-modeline-buffer-encoding t)
:init (doom-modeline-mode 1)) :init (doom-modeline-mode 1))
;; Don't ask why the font thing is here.
(set-face-attribute 'default nil :font "Tamsyn 14")
(set-frame-font "Tamsyn 14")
(set-frame-font "Tamsyn 14")
#+end_src #+end_src

Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 KiB