banished evil tabs from my corner of the omniverse

This commit is contained in:
ndwarshuis 2018-10-14 16:42:13 -04:00
parent db11e666e1
commit 0db6bfba50
1 changed files with 6 additions and 4 deletions

View File

@ -80,10 +80,6 @@ No need for startup screen, tool/menu/scrollbars, or backups
#+BEGIN_SRC emacs-lisp
(set-default 'truncate-lines t)
#+END_SRC
*** tab width
#+BEGIN_SRC emacs-lisp
(setq-default tab-width 4)
#+END_SRC
*** smooth scrolling
#+BEGIN_SRC emacs-lisp
(setq scroll-conservatively 100)
@ -365,6 +361,12 @@ desktop file exec directive."
(call-process "urxvt" nil 0 nil "-cd" cwd)))
#+END_SRC
* editing
** tabs and alignment
First things first, don't use spaces and force tabs to 4 chars by default (because...let's compromise on things that don't matter since I am using spaces anyways)
#+BEGIN_SRC emacs-lisp
(setq-default indent-tabs-mode nil
tab-width 4)
#+END_SRC
** completion
*** company
#+BEGIN_SRC emacs-lisp