Evil users can now use my emacs configuration!

This commit is contained in:
qorg11 2020-09-01 17:08:14 +02:00
parent e092eb6e62
commit 3c811e5b00
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -37,6 +37,13 @@
Using M-x irony-install-server requires cmake and a lot of Using M-x irony-install-server requires cmake and a lot of
dependences I'm to lazy to install. 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 false to use EVIL
#+END_SRC
* melpa crap, and basic packages installation * melpa crap, and basic packages installation
melpa, where you get the packages. This also installs use-package, melpa, where you get the packages. This also installs use-package,
and other packages I use. and other packages I use.
@ -209,9 +216,9 @@ Including indent-buffer, which should not be called automatically on save."
** Theme ** Theme
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package laguna-theme (use-package humanoid-themes
:ensure t :ensure t
:init(load-theme 'laguna t)) :init(load-theme 'humanoid-dark t))
#+END_SRC #+END_SRC
@ -309,7 +316,7 @@ Including indent-buffer, which should not be called automatically on save."
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(blink-cursor-mode 0) (blink-cursor-mode 0)
(global-hl-line-mode 1) (global-hl-line-mode 1)
(setq-default cursor-type 'bar) (setq-default cursor-type 'block)
#+END_SRC #+END_SRC
** Programming language things ** Programming language things
*** Lisp *** Lisp
@ -457,10 +464,29 @@ Including indent-buffer, which should not be called automatically on save."
yeah i need it lol yeah i need it lol
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package highlight-indent-guides (use-package highlight-indent-guides
:ensure t :ensure t
:init :init
(add-hook 'prog-mode-hook 'highlight-indent-guides-mode) (add-hook 'prog-mode-hook 'highlight-indent-guides-mode)
(setq highlight-indent-guides-method 'bitmap)) (setq highlight-indent-guides-method 'bitmap))
#+END_SRC
** kill ring popup
#+BEGIN_SRC emacs-lisp
(use-package popup-kill-ring
:ensure t
:bind ("M-y" . popup-kill-ring))
#+END_SRC
** Evil
Hyper this is for you :p
#+BEGIN_SRC emacs-lisp
(if i-just-use-emacs-to-be-cool
(use-package evil
:ensure t
:init (evil-mode)))
#+END_SRC #+END_SRC