Merge branch 'master' of ssh://git.famcosi.duckdns.org:222/gcordova/dot-vim into thinkpad-t14

This commit is contained in:
2022-05-15 17:58:46 -07:00
3 changed files with 7 additions and 4 deletions

View File

@@ -1,4 +1,5 @@
#!/bin/bash #!/bin/bash
# shellcheck disable=SC2016
usage() { usage() {
cat << EOT cat << EOT
Usage: Usage:
@@ -44,7 +45,7 @@ clone_bundles() {
case "$1" in case "$1" in
ls) repos 'echo -e "[red]@@[reset] [green]$(git -C @@ remote get-url origin)[reset]"' ;; 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 ;; save) repos 'echo -e "@@ $(git -C @@ remote get-url origin)"' | tee bundles.txt ;;
clone) clone_bundles ;; clone) clone_bundles ;;
?*) echo "Unknown command: $1" ;; ?*) echo "Unknown command: $1" ;;

View File

@@ -1,12 +1,13 @@
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 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 nerdtree-git https://github.com/Xuyuanp/nerdtree-git-plugin.git
nerdtree https://github.com/preservim/nerdtree.git
nim https://github.com/zah/nim.vim.git nim https://github.com/zah/nim.vim.git
solarized https://github.com/altercation/vim-colors-solarized.git solarized https://github.com/altercation/vim-colors-solarized.git
syntastic https://github.com/vim-syntastic/syntastic.git syntastic https://github.com/vim-syntastic/syntastic.git
terraform https://github.com/hashivim/vim-terraform.git terraform https://github.com/hashivim/vim-terraform.git
terragrunt https://github.com/yorinasub17/vim-terragrunt.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
vlang https://github.com/ollykel/v-vim.git vlang https://github.com/ollykel/v-vim.git
zig https://github.com/ziglang/zig.vim.git zig https://github.com/ziglang/zig.vim.git

1
vimrc
View File

@@ -3,6 +3,7 @@ filetype plugin indent on
set modeline set modeline
set background=dark set background=dark
set shell=/bin/bash set shell=/bin/bash
set splitbelow
syntax on syntax on
if has('gui_running') if has('gui_running')