Skip to content

feat!: remove .vimrc vimdf, add fzf-gitdiff.vim #19

feat!: remove .vimrc vimdf, add fzf-gitdiff.vim

feat!: remove .vimrc vimdf, add fzf-gitdiff.vim #19

Workflow file for this run

name: load_vimrc
on:
push:
branches: [ "main" ]
paths-ignore:
- '**/*.md'
- '**/*.txt'
pull_request:
branches: [ "main" ]
paths-ignore:
- '**/*.md'
- '**/*.txt'
jobs:
load_vimrc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# - name: single vimrc with vim.tiny
# run: vim.tiny -E -s -u .vimrc -c "qa!"
- name: install vim
# CentOS 7.1 uses Vim 7.4.629
run: sudo ./install/build_vim_from_source.sh 7.4.629
# - name: single vimrc
# run: vim -E -s -u .vimrc -c "qa!"
- name: full vimrc
run: ln -s `pwd`/root/.vim ~/.vim && vim -E -s -c "qa!"
- name: full vimrc with vim.tiny
run: vim.tiny -E -s -u .vimrc -c "qa!"