summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/cpp.el5
-rw-r--r--lisp/python-custom.el12
2 files changed, 17 insertions, 0 deletions
diff --git a/lisp/cpp.el b/lisp/cpp.el
index b7f5242..79d31fa 100644
--- a/lisp/cpp.el
+++ b/lisp/cpp.el
@@ -20,5 +20,10 @@
(add-hook 'c-mode-common-hook 'setup-c)
(add-hook 'c-mode-common-hook 'eglot-ensure)
+(defun create-cpp-class()
+ "Create a cpp class."
+ (interactive "Enter the name of the class: ")
+ )
+
(provide 'cpp)
;;; cpp.el ends here
diff --git a/lisp/python-custom.el b/lisp/python-custom.el
new file mode 100644
index 0000000..ebb2b81
--- /dev/null
+++ b/lisp/python-custom.el
@@ -0,0 +1,12 @@
+
+;;; Code:
+(require 'python)
+(use-package eglot
+ :ensure t
+ :config
+ (add-to-list 'eglot-server-programs '(python-mode . ("pylsp")))
+ :hook
+ ((python-mode . eglot-ensure)))
+
+(provide 'python-custom)
+;;; python-custom.el ends here