aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
authornic-gaffney <gaffney_nic@protonmail.com>2023-07-31 00:07:46 -0500
committernic-gaffney <gaffney_nic@protonmail.com>2023-07-31 00:07:46 -0500
commit9b2fe27e03ae1962305f9032823e9984b2cf503c (patch)
tree0451c57881da9e1c399f8215d15db6aad301da13 /vim
parent60ed283bace6596405eebd5670ce195f4c4f4409 (diff)
downloadsloth-9b2fe27e03ae1962305f9032823e9984b2cf503c.tar.gz
got rid of vim
Diffstat (limited to 'vim')
-rw-r--r--vim/ftdetect.vim1
-rw-r--r--vim/syntax.vim8
2 files changed, 0 insertions, 9 deletions
diff --git a/vim/ftdetect.vim b/vim/ftdetect.vim
deleted file mode 100644
index c19a7ca..0000000
--- a/vim/ftdetect.vim
+++ /dev/null
@@ -1 +0,0 @@
-au BufRead,BufNewFile *.sloth set filetype=sloth
diff --git a/vim/syntax.vim b/vim/syntax.vim
deleted file mode 100644
index af0f062..0000000
--- a/vim/syntax.vim
+++ /dev/null
@@ -1,8 +0,0 @@
-:syntax keyword Statement while fn foreign fn var if else return as in
-:syntax keyword Type Int String Float Void Bool
-:syntax match Number '[1234567890]'
-:syntax match Operator '[+ \- \* \/ <= == >= &&]'
-:syntax region String start=+"+ skip=+\\+ end=+"+
-:syntax match paren "("
-:syntax match Function "\w\+\s*(" contains=paren
-:syntax match Comment "#.*"