Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xcodebuild/universal-indent-size
Set all indent size in emacs at once
https://github.com/xcodebuild/universal-indent-size
emacs
Last synced: about 1 month ago
JSON representation
Set all indent size in emacs at once
- Host: GitHub
- URL: https://github.com/xcodebuild/universal-indent-size
- Owner: xcodebuild
- License: gpl-2.0
- Created: 2017-01-28T01:52:24.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-31T08:10:12.000Z (almost 8 years ago)
- Last Synced: 2024-11-09T20:37:36.102Z (2 months ago)
- Topics: emacs
- Language: Emacs Lisp
- Size: 11.7 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## universal-indent-size
Set all indent size in emacs at once.
## Install on spacemacs
```emacs-lisp
(universal-indent-size :location (recipe)
:fetcher github
:repo "codefalling/universal-indent-size")
``````emacs-lisp
(use-package universal-indent-size
:defer t
:commands universal-indent-size-set
:init
(universal-indent-size-set 2))
```## Usage
```emacs-lisp
;; use space instead of tab
(setq indent-tabs-mode nil)
;; set all indent size to 4
(universal-indent-size-set 4)
```