1
0
mirror of https://github.com/balkian/dotfiles.git synced 2024-11-21 19:52:29 +00:00

More gitignore for python. PyDoc in Emacs

This commit is contained in:
J. Fernando Sánchez 2015-03-20 21:21:18 +01:00
parent d7923606ef
commit 043530ca03
3 changed files with 7 additions and 3 deletions

View File

@ -47,6 +47,7 @@
helm helm
helm-ag helm-ag
helm-projectile helm-projectile
helm-pydoc
jedi jedi
magit magit
markdown-mode markdown-mode
@ -86,9 +87,6 @@
(add-hook 'shell-mode-hook 'ansi-color-for-comint-mode-on) (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) (add-hook 'after-init-hook #'global-flycheck-mode)
(require 'ido) (require 'ido)
@ -157,6 +155,7 @@
;; No tabs, only 4 spaces, as default ;; No tabs, only 4 spaces, as default
(setq-default indent-tabs-mode nil) (setq-default indent-tabs-mode nil)
(setq tab-width 4) (setq tab-width 4)
(setq default-tab-width 4);
;; Disable splash screen ;; Disable splash screen

View File

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

3
noserc Normal file
View File

@ -0,0 +1,3 @@
[nosetests]
verbosity=3
detailed-errors=1