Fixed org-bullets for terminals and hl-line-mode looks cute with
this theme. So I added it
This commit is contained in:
parent
4f8cddd1a6
commit
93b2fa2259
1 changed files with 6 additions and 3 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
|
||||||
#+AUTHOR: qorg11
|
#+AUTHOR: qorg11
|
||||||
#+TITLE: emacs config
|
#+TITLE: emacs config
|
||||||
#+OPTIONS: toc:nil
|
#+OPTIONS: toc:nil
|
||||||
|
@ -200,9 +201,10 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
(use-package org-bullets
|
(use-package org-bullets
|
||||||
:ensure t
|
:ensure t
|
||||||
:init
|
:init
|
||||||
|
(if (display-graphic-p)
|
||||||
(add-hook 'org-mode-hook 'org-bullets-mode))
|
(add-hook 'org-mode-hook 'org-bullets-mode))
|
||||||
(setq org-hide-emphasis-markers t)
|
(setq org-hide-emphasis-markers t)
|
||||||
(setq org-src-window-setup 'current-window)
|
(setq org-src-window-setup 'current-window))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** Relative lines
|
** Relative lines
|
||||||
|
@ -277,7 +279,7 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
** Shell
|
** Shell
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(setq shell "/bin/bash")
|
(setq shell "/bin/bash")
|
||||||
(defadvice ansi-term (before force-bsah)
|
(defadvice ansi-term (before force-bash)
|
||||||
(interactive (list shell)))
|
(interactive (list shell)))
|
||||||
(ad-activate 'ansi-term)
|
(ad-activate 'ansi-term)
|
||||||
|
|
||||||
|
@ -288,7 +290,7 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
:ensure t
|
:ensure t
|
||||||
:init
|
:init
|
||||||
(global-set-key "\C-s" 'swiper))
|
(global-set-key "\C-s" 'swiper))
|
||||||
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Company and Irony
|
** Company and Irony
|
||||||
Some shit for autocompletion and that kind of shit.
|
Some shit for autocompletion and that kind of shit.
|
||||||
|
@ -334,6 +336,7 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
Here I put things you can do in M-x or something idk
|
Here I put things you can do in M-x or something idk
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(blink-cursor-mode 0)
|
(blink-cursor-mode 0)
|
||||||
|
(hl-line-mode 1)
|
||||||
(setq-default cursor-type 'bar)
|
(setq-default cursor-type 'bar)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Programming language things
|
** Programming language things
|
||||||
|
|
Loading…
Add table
Reference in a new issue