Skip to content

Instantly share code, notes, and snippets.

@aplekhanov
Forked from mgrider/vim-swift-setup.sh
Created April 16, 2023 13:56
Show Gist options
  • Save aplekhanov/798559030adfc99cb37f48ef142d3607 to your computer and use it in GitHub Desktop.
Save aplekhanov/798559030adfc99cb37f48ef142d3607 to your computer and use it in GitHub Desktop.
Swift syntax highlighting for Vim
# Swift syntax highlighting for Vim
# Original Source: http://wingsquare.com/blog/swift-script-syntax-highlighting-and-indentation-for-vim-text-editor/
# Another helpful article: https://billyto.github.io/blog/swift-syntax-vim
# More about Vim packages: http://vimcasts.org/episodes/packages/
echo "--- creating ~/.vim/pack/bundle/start dir.."
mkdir -p ~/.vim/pack/bundle/start
echo "--- Cloning Apple's Swift repo.."
git clone --depth=1 https://github.com/apple/swift/
echo "--- Copying plugin to Vim bundles.."
cp -r ./swift/utils/vim ~/.vim/pack/bundle/start/swift
echo "--- Cleaning up, removing swift repo.."
rm -rf ./swift/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment