aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--vint/vintrc.yaml10
2 files changed, 14 insertions, 0 deletions
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/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