Move various internal package config bits around, fix indent settings
This commit is contained in:
parent
d5e83ded97
commit
356970944b
@ -7,12 +7,10 @@
|
|||||||
gc-cons-threshold 100000000)
|
gc-cons-threshold 100000000)
|
||||||
(load custom-file)
|
(load custom-file)
|
||||||
(load-theme 'fred t)
|
(load-theme 'fred t)
|
||||||
(savehist-mode 1)
|
|
||||||
(show-paren-mode 1)
|
|
||||||
(column-number-mode 1)
|
(column-number-mode 1)
|
||||||
(when (fboundp 'tool-bar-mode)
|
(setq standard-indent 2)
|
||||||
(tool-bar-mode -1))
|
(setq-default tab-width 4
|
||||||
|
indent-tabs-mode nil)
|
||||||
;;;; enable disabled functions
|
;;;; enable disabled functions
|
||||||
(put 'upcase-region 'disabled nil)
|
(put 'upcase-region 'disabled nil)
|
||||||
(put 'downcase-region 'disabled nil)
|
(put 'downcase-region 'disabled nil)
|
||||||
@ -49,11 +47,18 @@
|
|||||||
(bind-key "s-t" 'open-thunar-in-current-directory)
|
(bind-key "s-t" 'open-thunar-in-current-directory)
|
||||||
|
|
||||||
;;;; internal packages
|
;;;; internal packages
|
||||||
(use-package indent
|
(use-package tool-bar
|
||||||
:config
|
:config
|
||||||
(setq standard-indent 2)
|
(when (fboundp 'tool-bar-mode)
|
||||||
(setq-default tab-width 4
|
(tool-bar-mode -1)))
|
||||||
indent-tabs-mode nil))
|
|
||||||
|
(use-package savehist
|
||||||
|
:config
|
||||||
|
(savehist-mode))
|
||||||
|
|
||||||
|
(use-package paren
|
||||||
|
:config
|
||||||
|
(show-paren-mode 1))
|
||||||
|
|
||||||
(use-package sh-script
|
(use-package sh-script
|
||||||
:defer
|
:defer
|
||||||
|
Loading…
Reference in New Issue
Block a user