mirror of
https://codeberg.org/scip/dot-emacs.git
synced 2026-07-10 03:34:24 +02:00
add csv mode (wip), add lsp support to python-mode
This commit is contained in:
@@ -2,15 +2,15 @@
|
||||
:mode ("\\.py\\'" . python-mode)
|
||||
:interpreter ("python" . python-mode)
|
||||
:mode "\\.py\\'"
|
||||
:hook
|
||||
(function
|
||||
(lambda()
|
||||
(local-set-key [delete] 'py-electric-delete)
|
||||
(setq-default indent-tabs-mode nil)
|
||||
(setq mode-name "PY")
|
||||
(outline-minor-mode 0) ;; turn off outline here. FIXME: find out where it's turned on!
|
||||
)))
|
||||
:config
|
||||
(defun tvd-python-hook()
|
||||
(local-set-key [delete] 'py-electric-delete)
|
||||
(setq-default indent-tabs-mode nil)
|
||||
(setq mode-name "PY")
|
||||
(outline-minor-mode 0) ;; turn off outline here. FIXME: find out where it's turned on!
|
||||
(lsp))
|
||||
|
||||
:hook ((python-mode . tvd-python-hook)))
|
||||
|
||||
(provide 'init-python)
|
||||
;;; init-python.el ends here
|
||||
|
||||
Reference in New Issue
Block a user