Skip to content

Instantly share code, notes, and snippets.

@alfredo
Last active January 22, 2016 11:04
Show Gist options
  • Save alfredo/3a216a810a4752fafd97 to your computer and use it in GitHub Desktop.
Save alfredo/3a216a810a4752fafd97 to your computer and use it in GitHub Desktop.
emacs file to specify usage of tabs for an existing codebase using tabs
(
(javascript-mode . ((tab-width . 4)
(indent-tabs-mode . t)))
(python-mode . ((tab-width . 4)
(indent-tabs-mode . t)
(python-indent-offset . 4)
(flymake-python-pyflakes-extra-arguments . ("--ignore=W191"))))
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment