lot of things

This commit is contained in:
qorg11 2021-06-26 20:51:01 +02:00
parent 11b35116bf
commit 54a70b10bb
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -153,6 +153,7 @@
(setq-default major-mode 'text-mode) (setq-default major-mode 'text-mode)
(defalias 'yes-or-no-p 'y-or-n-p) (defalias 'yes-or-no-p 'y-or-n-p)
#+END_SRC #+END_SRC
** Highlight matching parentheses ** Highlight matching parentheses
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(show-paren-mode 1) (show-paren-mode 1)
@ -171,6 +172,7 @@
** theme ** theme
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(load-theme 'cyberpunk t) (load-theme 'cyberpunk t)
#+END_SRC #+END_SRC
** Lines and columns ** Lines and columns
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
@ -193,7 +195,7 @@
(defadvice ansi-term (before force-mksh) (defadvice ansi-term (before force-mksh)
(interactive (list shell))) (interactive (list shell)))
(ad-activate 'ansi-term) (ad-activate 'ansi-term)
(global-set-key (kbd "<C-return>") 'ansi-term)
#+END_SRC #+END_SRC
** Swiper ** Swiper
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
@ -212,7 +214,7 @@
: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)
@ -358,6 +360,7 @@
(scroll-bar-mode -1) (scroll-bar-mode -1)
#+end_src #+end_src
** Sidebar ** Sidebar
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package dired-sidebar (use-package dired-sidebar
:ensure t :ensure t
@ -383,6 +386,15 @@
(add-hook 'shell-mode-hook 'shell-mode-company-init)) (add-hook 'shell-mode-hook 'shell-mode-company-init))
#+end_src #+end_src
** Mark multiple
It's like multiple cursors but well done
#+begin_src emacs-lisp
(use-package "mark-multiple"
:ensure t
:bind ("C-c q" . 'mark-next-like-this))
#+end_src
* Helm * Helm
fuck ido lol fuck ido lol
#+begin_src emacs-lisp #+begin_src emacs-lisp