Last active
February 16, 2017 18:53
-
-
Save nosami/2f3f07adb851a97d4b5273af10ea1249 to your computer and use it in GitHub Desktop.
fsharp-tab-width
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (add-hook 'fsharp-mode-hook | |
| (lambda () | |
| (setq c-basic-offset 2) ; indents 2 chars | |
| (setq tab-width 2) ; and 2 char wide for TAB | |
| (setq indent-tabs-mode nil))) ; And force use of spaces |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment