Added web-mode and changed theme

This commit is contained in:
qorg11 2022-02-20 03:04:37 +01:00
parent 7e19d1802b
commit 424ee8cf36
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -138,14 +138,14 @@ it. I don't think i'd ever use the overwritten.
:defer 1) :defer 1)
#+END_SRC #+END_SRC
* Customization * Programs
Emacs customization, Here is where most of the configuration is. Emacs customization, Here is where most of the configuration is.
** Pseudopersonalization ** Pseudopersonalization
The basic emacs persdonalization lol The basic emacs persdonalization lol
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(tool-bar-mode -1) (tool-bar-mode -1)
(menu-bar-mode -1) (menu-bar-mode -1)
(set-frame-font "Inconsolata 14" 14 t) (set-frame-font "Terminus 12" 12 t)
(global-hl-line-mode) (global-hl-line-mode)
(set-face-background hl-line-face "gray13") (set-face-background hl-line-face "gray13")
(setq-default cursor-type 'box) (setq-default cursor-type 'box)
@ -202,9 +202,9 @@ It should use your default shell by default.
#+END_SRC #+END_SRC
** Theme ** Theme
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package "darktooth-theme" (use-package alect-themes
:ensure t :ensure t
:init(load-theme 'darktooth t)) :init(load-theme 'alect-black t))
#+end_src #+end_src
** ctrlf ** ctrlf
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
@ -277,12 +277,34 @@ to.
:init :init
(add-hook 'c-mode-hook 'c-turn-on-eldoc-mode)) (add-hook 'c-mode-hook 'c-turn-on-eldoc-mode))
(setq c-default-style "k&r") (setq c-default-style "k&r")
(add-hook 'c-mode-hook 'lsp-mode)
#+END_SRC #+END_SRC
*** Raku *** Raku
Raku, the cornerstone of any well designed programming language. Raku, the cornerstone of any well designed programming language.
#+begin_src emacs-lisp #+begin_src emacs-lisp
(setq raku-indent-offset 5) (setq raku-indent-offset 5)
(setq raku-exec-path "/home/qorg/.raku/rakudo-moar-2021.10-01-linux-x86_64-gcc/bin/raku") (setq raku-exec-path "/home/qorg/rakudo-star-2021.04/bin/raku")
#+end_src
*** Web shit
Web programming and its consequences have been a disaster for the
human race, but it's a necessary evil these days. So here's a little
configuration for web-mode. Which is an improved shit for editing html documents.
#+begin_src emacs-lisp
(use-package web-mode
:ensure t
:init
(setq web-mode-markup-indent-offset 5)
(setq web-mode-indent-style nil)
(setq web-mode-css-indent-offset 5)
(setq web-mode-code-indent-offset 5)
(add-to-list 'web-mode-indentation-params '("lineup-args" . nil))
(add-to-list 'web-mode-indentation-params '("lineup-calls" . nil))
(add-to-list 'web-mode-indentation-params '("lineup-concats" . nil))
(add-to-list 'web-mode-indentation-params '("lineup-ternary" . nil))
(setq web-mode-enable-current-element-highlight t)
(set-face-attribute 'web-mode-html-tag-face nil :foreground "Green3")
(set-face-attribute 'web-mode-html-attr-value-face nil :foreground "Orange4")
(set-face-attribute 'web-mode-html-attr-name-face nil :foreground "Yellow4"))
#+end_src #+end_src
*** org *** org
#+begin_src emacs-lisp #+begin_src emacs-lisp
@ -383,7 +405,7 @@ Scroll by lines rather than by pages.
:commands (dired-sidebar-toggle-sidebar)) :commands (dired-sidebar-toggle-sidebar))
(global-set-key (kbd "<f7>") 'dired-sidebar-toggle-sidebar) (global-set-key (kbd "<f7>") 'dired-sidebar-toggle-sidebar)
#+END_SRC #+END_SRC
*** Shell ** Shell
#+begin_src emacs-lisp #+begin_src emacs-lisp
(add-hook 'shell-mode-hook 'yas-minor-mode) (add-hook 'shell-mode-hook 'yas-minor-mode)
(add-hook 'shell-mode-hook 'flycheck-mode) (add-hook 'shell-mode-hook 'flycheck-mode)
@ -432,8 +454,10 @@ And same but jumping between frames
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package "ace-window" (use-package "ace-window"
:ensure t :ensure t
:bind("M-l" . 'ace-window)) :bind("M-l" . 'ace-window)
:bind("M-o" . 'ace-delete-window))
;; Gotta remove the bad habits
(global-unset-key (kbd "C-x o"))
#+end_src #+end_src
** Expand region ** Expand region
@ -514,6 +538,25 @@ thankfully there's this thing.
(add-hook 'magit-pre-refresh-hook 'diff-hl-magit-pre-refresh) (add-hook 'magit-pre-refresh-hook 'diff-hl-magit-pre-refresh)
(add-hook 'magit-post-refresh-hook 'diff-hl-magit-post-refresh)) (add-hook 'magit-post-refresh-hook 'diff-hl-magit-post-refresh))
#+end_src #+end_src
** zzz-to-char
It's like ace-whatever but for zapping characters.
=zap-to-char=
#+begin_src emacs-lisp
(use-package zzz-to-char
:ensure t
:bind("M-z" . 'zzz-to-char))
#+end_src
** Helpful
Better \*help\* buffer
#+begin_src emacs-lisp
(use-package helpful
:ensure t
:bind ("C-h f". #'helpful-callable)
:bind ("C-h v". #'helpful-variable)
:bind ("C-h k". #'helpful-key))
#+end_src
* Helm * Helm
fuck Ido lol fuck Ido lol
#+begin_src emacs-lisp #+begin_src emacs-lisp
@ -565,10 +608,9 @@ own logo instead of Lain.
* Modeline * Modeline
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package "telephone-line" (use-package "doom-modeline"
:ensure t :ensure t
:init (telephone-line-mode 1)) :init (doom-modeline-mode 1))
#+end_src #+end_src