lot of things
This commit is contained in:
parent
11b35116bf
commit
54a70b10bb
1 changed files with 24 additions and 12 deletions
16
config.org
16
config.org
|
@ -153,6 +153,7 @@
|
|||
(setq-default major-mode 'text-mode)
|
||||
(defalias 'yes-or-no-p 'y-or-n-p)
|
||||
#+END_SRC
|
||||
|
||||
** Highlight matching parentheses
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(show-paren-mode 1)
|
||||
|
@ -171,6 +172,7 @@
|
|||
** theme
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(load-theme 'cyberpunk t)
|
||||
|
||||
#+END_SRC
|
||||
** Lines and columns
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
|
@ -193,7 +195,7 @@
|
|||
(defadvice ansi-term (before force-mksh)
|
||||
(interactive (list shell)))
|
||||
(ad-activate 'ansi-term)
|
||||
|
||||
(global-set-key (kbd "<C-return>") 'ansi-term)
|
||||
#+END_SRC
|
||||
** Swiper
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
|
@ -212,7 +214,7 @@
|
|||
:ensure t
|
||||
:config
|
||||
(setq company-idle-delay 0)
|
||||
(setq company-minimum-prefix-length 3)
|
||||
(setq company-minimum-prefix-length 1)
|
||||
(global-company-mode))
|
||||
(with-eval-after-load 'company
|
||||
(define-key company-active-map (kbd "M-n") nil)
|
||||
|
@ -358,6 +360,7 @@
|
|||
(scroll-bar-mode -1)
|
||||
#+end_src
|
||||
** Sidebar
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package dired-sidebar
|
||||
:ensure t
|
||||
|
@ -383,6 +386,15 @@
|
|||
(add-hook 'shell-mode-hook 'shell-mode-company-init))
|
||||
#+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
|
||||
fuck ido lol
|
||||
#+begin_src emacs-lisp
|
||||
|
|
Loading…
Add table
Reference in a new issue