From 7c2a275b442e862b14d6892644f60328469956d7 Mon Sep 17 00:00:00 2001 From: Gustavo Cordova Date: Mon, 7 Feb 2022 16:49:51 -0800 Subject: [PATCH 1/4] Add vim-vcl bundle --- bundle/bundles.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/bundle/bundles.txt b/bundle/bundles.txt index feb8c96..4851e2b 100644 --- a/bundle/bundles.txt +++ b/bundle/bundles.txt @@ -8,4 +8,5 @@ syntastic git@github.com:vim-syntastic/syntastic.git terraform git@github.com:hashivim/vim-terraform.git terragrunt https://github.com/yorinasub17/vim-terragrunt.git toml https://github.com/cespare/vim-toml.git +vcl-vim-plugin https://github.com/smerrill/vcl-vim-plugin zig git@github.com:ziglang/zig.vim.git From 22a9ebc54935ccb50231f4f9db8d4921c3e9a97a Mon Sep 17 00:00:00 2001 From: Gustavo Cordova Date: Tue, 10 May 2022 09:34:10 -0700 Subject: [PATCH 2/4] Color-enhance 'bundle update' output --- bundle/bundles.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bundle/bundles.sh b/bundle/bundles.sh index c264884..cb99bca 100755 --- a/bundle/bundles.sh +++ b/bundle/bundles.sh @@ -1,4 +1,5 @@ #!/bin/bash +# shellcheck disable=SC2016 usage() { cat << EOT Usage: @@ -44,7 +45,7 @@ clone_bundles() { case "$1" in ls) repos 'echo -e "[red]@@[reset] [green]$(git -C @@ remote get-url origin)[reset]"' ;; - update) repos 'git -C @@ pull 2>&1 | sed "s|^|[@@] |g"' ;; + update) repos 'git -C @@ pull 2>&1 | sed "s|^|[green][@@][reset] |g"' ;; save) repos 'echo -e "@@ $(git -C @@ remote get-url origin)"' | tee bundles.txt ;; clone) clone_bundles ;; ?*) echo "Unknown command: $1" ;; From e2ed4c0c46142a5a4252207e944239847680231d Mon Sep 17 00:00:00 2001 From: Gustavo Cordova Date: Tue, 10 May 2022 09:34:25 -0700 Subject: [PATCH 3/4] Set 'splitbelow' option --- vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/vimrc b/vimrc index a680f98..b8230b0 100644 --- a/vimrc +++ b/vimrc @@ -3,6 +3,7 @@ filetype plugin indent on set modeline set background=dark set shell=/bin/bash +set splitbelow syntax on if has('gui_running') From 048737bcd5e554c7032b19139058a801dc7fb887 Mon Sep 17 00:00:00 2001 From: Gustavo Cordova Date: Tue, 10 May 2022 09:36:57 -0700 Subject: [PATCH 4/4] Add '-syntax' suffix to dockerfile and toml extensions --- bundle/bundles.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bundle/bundles.txt b/bundle/bundles.txt index 5d20eac..93c08b2 100644 --- a/bundle/bundles.txt +++ b/bundle/bundles.txt @@ -1,4 +1,4 @@ -dockerfile https://github.com/ekalinin/Dockerfile.vim.git +dockerfile-syntax https://github.com/ekalinin/Dockerfile.vim.git fugitive https://github.com/tpope/vim-fugitive.git nerdtree https://github.com/preservim/nerdtree.git nerdtree-git https://github.com/Xuyuanp/nerdtree-git-plugin.git @@ -7,6 +7,6 @@ solarized https://github.com/altercation/vim-colors-solarized.git syntastic https://github.com/vim-syntastic/syntastic.git terraform https://github.com/hashivim/vim-terraform.git terragrunt https://github.com/yorinasub17/vim-terragrunt.git -toml https://github.com/cespare/vim-toml.git +toml-syntax https://github.com/cespare/vim-toml.git vcl-vim-plugin https://github.com/smerrill/vcl-vim-plugin zig https://github.com/ziglang/zig.vim.git