1
0
mirror of https://github.com/elisspace/dotfiles.git synced 2026-08-29 15:43:57 +00:00

add vundle and YouCompleteMe vim plugin

This commit is contained in:
elisspace
2022-06-13 09:59:13 -04:00
parent fd1390996f
commit efa17d3741
48 changed files with 3470 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
#!/usr/bin/sh
#
# An example hook script to verify what is about to be committed
# by applypatch from an e-mail message.
#
# The hook should exit with non-zero status after issuing an
# appropriate message if it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-applypatch".
. git-sh-setup
precommit="$(git rev-parse --git-path hooks/pre-commit)"
test -x "$precommit" && exec "$precommit" ${1+"$@"}
: