summaryrefslogtreecommitdiffstats
path: root/after/plugin/term-edit.lua
diff options
context:
space:
mode:
authorSquibid <me@zacharyscheiman.com>2023-05-23 14:39:41 -0400
committerSquibid <me@zacharyscheiman.com>2023-05-23 14:39:41 -0400
commit489451b318aa92d50ad2686f008870108d9f4dab (patch)
treef3efa5174aed19c5315ccef758e6c4bd92a17b2c /after/plugin/term-edit.lua
parent7cf8bc3a4c22fe4c8b14cd5ffcefee1cbced9f22 (diff)
downloadnvim-489451b318aa92d50ad2686f008870108d9f4dab.tar.gz
nvim-489451b318aa92d50ad2686f008870108d9f4dab.tar.bz2
nvim-489451b318aa92d50ad2686f008870108d9f4dab.zip
added term edit config
Diffstat (limited to '')
-rw-r--r--after/plugin/term-edit.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/after/plugin/term-edit.lua b/after/plugin/term-edit.lua
new file mode 100644
index 0000000..77f7470
--- /dev/null
+++ b/after/plugin/term-edit.lua
@@ -0,0 +1,8 @@
+local status_ok, termedit = pcall(require, "term-edit")
+if not status_ok then
+ return
+end
+
+termedit.setup {
+ prompt_end = '$ ',
+}