idk
This commit is contained in:
parent
51d76fffdc
commit
2da08a1b0e
1 changed files with 123 additions and 11 deletions
134
config.org
134
config.org
|
@ -30,7 +30,7 @@
|
||||||
IBM Plex Mono font. Install it from your distribution packages.
|
IBM Plex Mono font. Install it from your distribution packages.
|
||||||
You can change it before opening Emacs with this configuration for
|
You can change it before opening Emacs with this configuration for
|
||||||
the first time.
|
the first time.
|
||||||
|
|
||||||
For irony-mode (C autocompletion) irony-sever must be
|
For irony-mode (C autocompletion) irony-sever must be
|
||||||
installed. You can install it with M-x irony-install-server or via
|
installed. You can install it with M-x irony-install-server or via
|
||||||
distribution's packages, in Debian case, apt install irony-server.
|
distribution's packages, in Debian case, apt install irony-server.
|
||||||
|
@ -242,19 +242,116 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
** theme
|
** theme
|
||||||
Emacs theme, among other things.
|
Emacs theme, among other things.
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package humanoid-themes
|
(use-package zerodark-theme
|
||||||
:ensure t
|
:ensure t
|
||||||
:config
|
:init
|
||||||
(load-theme 'humanoid-dark t))
|
(load-theme 'zerodark t))
|
||||||
(global-hl-line-mode)
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** erc
|
Fixed to the theme, I literally copy-pasted uncle dave's this-theme fixing:
|
||||||
Emacs Irc Client, better than irssi and weechat.
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(setq erc-nick name)
|
|
||||||
(setq erc-server website)
|
(let ((class '((class color) (min-colors 89)))
|
||||||
|
(default (if (true-color-p) "#abb2bf" "#afafaf"))
|
||||||
|
(light (if (true-color-p) "#ccd4e3" "#d7d7d7"))
|
||||||
|
(background (if (true-color-p) "#282c34" "#333333"))
|
||||||
|
(background-dark (if (true-color-p) "#24282f" "#222222"))
|
||||||
|
(background-darker (if (true-color-p) "#22252c" "#222222"))
|
||||||
|
(mode-line-inactive (if "#1c2129" "#222222"))
|
||||||
|
(mode-line-active (if (true-color-p) "#6f337e" "#875f87"))
|
||||||
|
(background-lighter (if (true-color-p) "#3a3f4b" "#5f5f5f"))
|
||||||
|
(background-red (if (true-color-p) "#4c3840" "#5f5f5f"))
|
||||||
|
(bright-background-red (if (true-color-p) "#744a5b" "#744a5b"))
|
||||||
|
(background-purple (if (true-color-p) "#48384c" "#5f5f5f"))
|
||||||
|
(background-blue (if (true-color-p) "#38394c" "#444444"))
|
||||||
|
(bright-background-blue (if (true-color-p) "#4e5079" "#4e5079"))
|
||||||
|
(background-green (if (true-color-p) "#3d4a41" "#5f5f5f"))
|
||||||
|
(bright-background-green (if (true-color-p) "#3f6d54" "#3f6d54"))
|
||||||
|
(background-orange (if (true-color-p) "#4a473d" "#5f5f5f"))
|
||||||
|
(hl-line (if (true-color-p) "#2c323b" "#333333"))
|
||||||
|
(grey (if (true-color-p) "#cccccc" "#cccccc"))
|
||||||
|
(grey-dark (if (true-color-p) "#666666" "#666666"))
|
||||||
|
(highlight (if (true-color-p) "#3e4451" "#5f5f5f"))
|
||||||
|
(comment (if (true-color-p) "#687080" "#707070"))
|
||||||
|
(orange (if (true-color-p) "#da8548" "#d7875f"))
|
||||||
|
(orange-light (if (true-color-p) "#ddbd78" "#d7af87"))
|
||||||
|
(red (if (true-color-p) "#ff6c6b" "#ff5f5f"))
|
||||||
|
(purple (if (true-color-p) "#c678dd" "#d787d7"))
|
||||||
|
(purple-dark (if (true-color-p) "#64446d" "#5f5f5f"))
|
||||||
|
(blue (if (true-color-p) "#61afef" "#5fafff"))
|
||||||
|
(blue-dark (if (true-color-p) "#1f5582" "#005f87"))
|
||||||
|
(green (if (true-color-p) "#98be65" "#87af5f"))
|
||||||
|
(green-light (if (true-color-p) "#9eac8c" "#afaf87"))
|
||||||
|
(peach "PeachPuff3")
|
||||||
|
(diff-added-background (if (true-color-p) "#284437" "#284437"))
|
||||||
|
(diff-added-refined-background (if (true-color-p) "#1e8967" "#1e8967"))
|
||||||
|
(diff-removed-background (if (true-color-p) "#583333" "#580000"))
|
||||||
|
(diff-removed-refined-background (if (true-color-p) "#b33c49" "#b33c49"))
|
||||||
|
(diff-current-background (if (true-color-p) "#29457b" "#29457b"))
|
||||||
|
(diff-current-refined-background (if (true-color-p) "#4174ae" "#4174ae")))
|
||||||
|
|
||||||
|
(custom-theme-set-faces
|
||||||
|
'zerodark
|
||||||
|
|
||||||
|
`(fancy-battery-charging ((,class (:background ,background-blue :height 1.0 :bold t))))
|
||||||
|
`(fancy-battery-discharging ((,class (:background ,background-blue :height 1.0))))
|
||||||
|
`(fancy-battery-critical ((,class (:background ,background-blue :height 1.0))))
|
||||||
|
|
||||||
|
;; mode line stuff
|
||||||
|
`(mode-line ((,class (:background ,background-blue :height 1.0 :foreground ,blue
|
||||||
|
:distant-foreground ,background-blue
|
||||||
|
:box ,(when zerodark-use-paddings-in-mode-line
|
||||||
|
(list :line-width 6 :color background-blue))))))
|
||||||
|
|
||||||
|
`(mode-line-inactive ((,class (:background ,background-blue :height 1.0 :foreground ,default
|
||||||
|
:distant-foreground ,background-blue
|
||||||
|
:box ,(when zerodark-use-paddings-in-mode-line
|
||||||
|
(list :line-width 6 :color background-blue))))))
|
||||||
|
|
||||||
|
`(header-line ((,class (:inherit mode-line-inactive))))
|
||||||
|
|
||||||
|
`(powerline-active0 ((,class (:height 1.0 :foreground ,blue :background ,background-blue
|
||||||
|
:distant-foreground ,background-blue))))
|
||||||
|
`(powerline-active1 ((,class (:height 1.0 :foreground ,blue :background ,background-blue
|
||||||
|
:distant-foreground ,background-blue))))
|
||||||
|
`(powerline-active2 ((,class (:height 1.0 :foreground ,blue :background ,background-blue
|
||||||
|
:distant-foreground ,background-blue))))
|
||||||
|
`(powerline-inactive0 ((,class (:height 1.0 :foreground ,blue :background ,background-blue
|
||||||
|
:distant-foreground ,background-blue))))
|
||||||
|
`(powerline-inactive1 ((,class (:height 1.0 :foreground ,blue :background ,background-blue
|
||||||
|
distant-foreground ,background-blue))))
|
||||||
|
`(powerline-inactive2 ((,class (:height 1.0 :foreground ,blue :background ,background-blue
|
||||||
|
:distant-foreground ,background-blue))))
|
||||||
|
|
||||||
|
`(dashboard-heading-face ((,class (:background ,background :foreground ,blue
|
||||||
|
:bold t :height 1.2))))
|
||||||
|
`(dashboard-banner-logo-title-face ((,class (:background ,background :foreground ,blue
|
||||||
|
:bold t :height 1.2))))
|
||||||
|
`(widget-button ((,class (:background ,background :foreground ,default :bold nil
|
||||||
|
:underline t :height 0.9))))
|
||||||
|
|
||||||
|
;; erc stuff
|
||||||
|
`(erc-nick-default-face ((,class :foreground ,blue :background ,background :weight bold)))
|
||||||
|
|
||||||
|
;; org stuff
|
||||||
|
`(outline-1 ((,class (:foreground ,blue :weight bold :height 1.5 :bold nil))))
|
||||||
|
`(outline-2 ((,class (:foreground ,purple :weight bold :height 1.3 :bold nil))))
|
||||||
|
`(outline-3 ((,class (:foreground ,peach :weight bold :height 1.1 :bold nil))))
|
||||||
|
`(outline-4 ((,class (:foreground ,green-light :weight bold :height 1 :bold nil))))
|
||||||
|
`(outline-5 ((,class (:foreground ,blue :weight bold :height 1 :bold nil))))
|
||||||
|
`(outline-6 ((,class (:foreground ,purple :weight bold :height 1 :bold nil))))
|
||||||
|
`(outline-7 ((,class (:foreground ,peach :weight bold :height 1 :bold nil))))
|
||||||
|
`(outline-8 ((,class (:foreground ,green-light :weight bold :height 1.1 :bold nil))))
|
||||||
|
|
||||||
|
`(org-block-begin-line ((,class (:background ,background-blue :foreground ,blue
|
||||||
|
:bold t :height 1.0))))
|
||||||
|
`(org-block-end-line ((,class (:background ,background-blue :foreground ,blue
|
||||||
|
:bold t :height 1.0))))
|
||||||
|
|
||||||
|
`(org-block ((,class (:background "#111"))))))
|
||||||
|
|
||||||
#+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)
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
@ -290,7 +387,7 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
:ensure t
|
:ensure t
|
||||||
:config
|
:config
|
||||||
(setq company-idle-delay 0)
|
(setq company-idle-delay 0)
|
||||||
(setq company-minimum-prefix-length 1)
|
(setq company-minimum-prefix-length 3)
|
||||||
(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)
|
||||||
|
@ -322,6 +419,21 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
(use-package yasnippet-snippets
|
(use-package yasnippet-snippets
|
||||||
:ensure t)
|
:ensure t)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
** Idk what to name this
|
||||||
|
Here I put things you can do in M-x or something idk
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(blink-cursor-mode 0)
|
||||||
|
|
||||||
|
#+END_SRC
|
||||||
|
** Lisp things
|
||||||
|
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package rainbow-delimiters
|
||||||
|
:ensure t
|
||||||
|
:init
|
||||||
|
(add-hook 'emacs-lisp-mode 'rainbow-delimiters-mode))
|
||||||
|
|
||||||
|
#+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
|
||||||
I rebinded C-x C-b to ido-switch-buffer because I always press C-x
|
I rebinded C-x C-b to ido-switch-buffer because I always press C-x
|
||||||
|
|
Loading…
Add table
Reference in a new issue