aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitmodules4
-rw-r--r--Makefile4
-rw-r--r--games/dr.sh2
-rw-r--r--vint/vintrc.yaml10
4 files changed, 17 insertions, 3 deletions
diff --git a/.gitmodules b/.gitmodules
index 998180ec..8039bbad 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -6,7 +6,7 @@
url = https://sanctum.geek.nz/clone/vim-commentary.git
[submodule "vim/bundle/juvenile"]
path = vim/bundle/juvenile
- url = https://sanctum.geek.nz/code/juvenile.git
+ url = https://sanctum.geek.nz/code/vim-juvenile.git
[submodule "vim/bundle/lion"]
path = vim/bundle/lion
url = https://sanctum.geek.nz/clone/vim-lion.git
@@ -18,7 +18,7 @@
url = https://sanctum.geek.nz/clone/vim-repeat.git
[submodule "vim/bundle/sahara"]
path = vim/bundle/sahara
- url = https://sanctum.geek.nz/code/sahara.git
+ url = https://sanctum.geek.nz/code/vim-sahara.git
[submodule "vim/bundle/surround"]
path = vim/bundle/surround
url = https://sanctum.geek.nz/clone/vim-surround.git
diff --git a/Makefile b/Makefile
index a899a367..9fec0cc9 100644
--- a/Makefile
+++ b/Makefile
@@ -50,6 +50,7 @@
install-vim-gui \
install-vim-gui-config \
install-vim-indent \
+ install-vint \
install-wget \
install-x \
install-zsh \
@@ -562,6 +563,9 @@ install-vim-gui: install-vim \
install-vim-gui-config:
cp -p -- vim/gvimrc $(HOME)/.gvimrc
+install-vint:
+ cp -p -- vint/vintrc.yaml $(HOME)/.vintrc.yaml
+
install-wget:
cp -p -- wget/wgetrc $(HOME)/.wgetrc
diff --git a/games/dr.sh b/games/dr.sh
index df21d7a5..e019a953 100644
--- a/games/dr.sh
+++ b/games/dr.sh
@@ -10,7 +10,7 @@ d=${nd#*d}
[ "${nd%d*}" != "" ] && n=${nd%d*}
[ "${1#*+}" = "$1" ] || a=${1#*+}
-# Check number of roles and addendum make sense
+# Check number of rolls and addendum make sense
[ "$((n > 0 && a >= 0))" -eq 1 ] || exit 2
# Check this is a real die you can actually roll
diff --git a/vint/vintrc.yaml b/vint/vintrc.yaml
new file mode 100644
index 00000000..cf74433a
--- /dev/null
+++ b/vint/vintrc.yaml
@@ -0,0 +1,10 @@
+# Show me all my problems, including matters of style
+cmdargs:
+ severity: style_problem
+
+# Allow "set nocompatible", because it does need to be included for using ex if
+# I don't want so much of my config to break because of 'cpoptions' (especially
+# splitting long lines)
+policies:
+ ProhibitSetNoCompatible:
+ enabled: false