emacs.d

bloated emacs configuration
git clone git://git.ckyln.com/~cem/emacs.d.git
Log | Files | Refs | README

commit 84fe02631b3e06f92bb55fc370412f4de977226b
parent be830b19da05e5e6fa77ba2d101ccf47f2dce7b8
Author: Cem Keylan <cem@ckyln.com>
Date:   Fri, 13 Mar 2020 18:15:22 +0300

add python config

Diffstat:
Minit.org | 15+++++++++++++++
1 file changed, 15 insertions(+), 0 deletions(-)

diff --git a/init.org b/init.org @@ -421,6 +421,21 @@ For shell, I want to have 4 spaces as an indentation. (setq sh-tab-width 4) #+END_SRC +** Python +I use the django framework quite frequently at work. So I want a few packages +for that as well. + +*** Company jedi +Company jedi is for better completion while I am editing python files. Here +is the use-package + +#+BEGIN_SRC emacs-lisp +(use-package company-jedi + :ensure t + :after company + :config + (add-to-list 'company-backends 'company-jedi)) +#+END_SRC * Other Settings Those are small settings for emacs that I cannot categorize but have importance