Drop support for Python

I couldn't pull lsp-python from Melpa properly and since I'm
currently not doing any Python work, I figure I will drop support
for it temporarily.
This commit is contained in:
William Carroll 2019-03-06 17:10:20 +00:00
parent 7db36dc24d
commit e9e4181fc0
2 changed files with 0 additions and 15 deletions

View file

@ -20,7 +20,6 @@
(require 'wpc-docker)
(require 'wpc-lisp)
(require 'wpc-haskell)
(require 'wpc-python)
(require 'wpc-elixir)
(require 'wpc-nix)
(require 'wpc-clojure)

View file

@ -1,14 +0,0 @@
;;; wpc-python.el --- Hosts python tooling preferences -*- lexical-binding: t -*-
;; Author: William Carroll <wpcarro@gmail.com>
;;; Commentary:
;; Python tooling for work, life, etc.
;;; Code:
(use-package lsp-python
:config
(general-add-hook 'python-mode-hook #'lsp-python-enable)
(general-add-hook 'before-save-hook #'lsp-format-buffer))
(provide 'wpc-python)
;;; wpc-python.el ends here