lot of things
This commit is contained in:
parent
11b35116bf
commit
54a70b10bb
1 changed files with 24 additions and 12 deletions
36
config.org
36
config.org
|
@ -143,16 +143,17 @@
|
||||||
Emacs customization, Here is where most of the configuration is.
|
Emacs customization, Here is where most of the configuration is.
|
||||||
** Disable bars font and pandoc export optxions.
|
** Disable bars font and pandoc export optxions.
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(tool-bar-mode -1)
|
(tool-bar-mode -1)
|
||||||
(menu-bar-mode -1)
|
(menu-bar-mode -1)
|
||||||
(set-frame-font "Terminus 14" nil t)
|
(set-frame-font "Terminus 14" nil t)
|
||||||
(use-package smex
|
(use-package smex
|
||||||
:ensure t
|
:ensure t
|
||||||
:init
|
:init
|
||||||
(global-set-key (kbd "M-x") 'helm-M-x))
|
(global-set-key (kbd "M-x") 'helm-M-x))
|
||||||
(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
|
||||||
|
@ -379,10 +382,19 @@
|
||||||
(use-package company-shell
|
(use-package company-shell
|
||||||
:ensure t
|
:ensure t
|
||||||
:config
|
:config
|
||||||
(require 'company)
|
(require 'company)
|
||||||
(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
|
||||||
|
|
Loading…
Add table
Reference in a new issue