Move various internal package config bits around, fix indent settings

This commit is contained in:
Adam Goldsmith 2019-05-30 00:36:01 -04:00
parent d5e83ded97
commit 356970944b
1 changed files with 14 additions and 9 deletions

View File

@ -7,12 +7,10 @@
gc-cons-threshold 100000000)
(load custom-file)
(load-theme 'fred t)
(savehist-mode 1)
(show-paren-mode 1)
(column-number-mode 1)
(when (fboundp 'tool-bar-mode)
(tool-bar-mode -1))
(setq standard-indent 2)
(setq-default tab-width 4
indent-tabs-mode nil)
;;;; enable disabled functions
(put 'upcase-region 'disabled nil)
(put 'downcase-region 'disabled nil)
@ -49,11 +47,18 @@
(bind-key "s-t" 'open-thunar-in-current-directory)
;;;; internal packages
(use-package indent
(use-package tool-bar
:config
(setq standard-indent 2)
(setq-default tab-width 4
indent-tabs-mode nil))
(when (fboundp 'tool-bar-mode)
(tool-bar-mode -1)))
(use-package savehist
:config
(savehist-mode))
(use-package paren
:config
(show-paren-mode 1))
(use-package sh-script
:defer