More gitignore for python. PyDoc in Emacs

tmux
J. Fernando Sánchez 9 years ago
parent d7923606ef
commit 043530ca03

@ -47,6 +47,7 @@
helm
helm-ag
helm-projectile
helm-pydoc
jedi
magit
markdown-mode
@ -86,9 +87,6 @@
(add-hook 'shell-mode-hook 'ansi-color-for-comint-mode-on)
(add-hook 'python-mode-hook 'auto-complete-mode)
(add-hook 'python-mode-hook '(lambda () (require 'nose)))
(add-hook 'python-mode-hook 'jedi:ac-setup)
(add-hook 'after-init-hook #'global-flycheck-mode)
(require 'ido)
@ -157,6 +155,7 @@
;; No tabs, only 4 spaces, as default
(setq-default indent-tabs-mode nil)
(setq tab-width 4)
(setq default-tab-width 4);
;; Disable splash screen

@ -25,6 +25,7 @@
*.log
*.sql
*.sqlite
*.db
# OS generated files #
######################
@ -44,6 +45,7 @@ Thumbs.db
# Python
######
*.pyc
*.egg-info
# VIM
######

@ -0,0 +1,3 @@
[nosetests]
verbosity=3
detailed-errors=1
Loading…
Cancel
Save