Evil users can now use my emacs configuration!
This commit is contained in:
parent
e092eb6e62
commit
3c811e5b00
1 changed files with 33 additions and 7 deletions
32
config.org
32
config.org
|
@ -37,6 +37,13 @@
|
|||
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 false to use EVIL
|
||||
|
||||
#+END_SRC
|
||||
|
||||
* melpa crap, and basic packages installation
|
||||
melpa, where you get the packages. This also installs use-package,
|
||||
and other packages I use.
|
||||
|
@ -209,9 +216,9 @@ Including indent-buffer, which should not be called automatically on save."
|
|||
|
||||
** Theme
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package laguna-theme
|
||||
(use-package humanoid-themes
|
||||
:ensure t
|
||||
:init(load-theme 'laguna t))
|
||||
:init(load-theme 'humanoid-dark t))
|
||||
|
||||
#+END_SRC
|
||||
|
||||
|
@ -309,7 +316,7 @@ Including indent-buffer, which should not be called automatically on save."
|
|||
#+BEGIN_SRC emacs-lisp
|
||||
(blink-cursor-mode 0)
|
||||
(global-hl-line-mode 1)
|
||||
(setq-default cursor-type 'bar)
|
||||
(setq-default cursor-type 'block)
|
||||
#+END_SRC
|
||||
** Programming language things
|
||||
*** Lisp
|
||||
|
@ -464,6 +471,25 @@ Including indent-buffer, which should not be called automatically on save."
|
|||
|
||||
#+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
|
||||
|
||||
* ido
|
||||
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
|
||||
|
|
Loading…
Add table
Reference in a new issue