SkillAgentSearch skills...

Swift.vim

Vim runtime files for Swift

Install / Use

/learn @keith/Swift.vim
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Swift.vim

Syntax and indent files for Swift

Features

  • Syntax highlighting for modern Swift
  • Filetype detection
  • Smart indentation
  • Compiler usage (:compiler swiftc:make)

Examples

Installation

LazyVim

For neovim only

  1. Locate your plugins folder, make a new .lua file and name it swift.lua

  2. add the following:

return {
  "keith/swift.vim",
  ft = "swift",  -- filetype
}

The plugin should be automatically installed next time you start nvim!

[!TIP] usual location for the plugins is ~/.config/nvim/lua/plugins/)

Plug

  1. Add the folowing to your vim-plug block:
Plug 'keith/swift.vim', { 'for': 'swift' }
  1. Run :PlugInstall:

Packer

  1. Add the following to your packer config:
require('packer').startup(function(use)
  use { 'keith/swift.vim', ft = 'swift' }
end)

Usage

Opening any .swift file should automatically enable the plugin.

Commands
  • Run :compiler swiftc then :make to build current file.
View on GitHub
GitHub Stars823
CategoryDevelopment
Updated3mo ago
Forks44

Languages

Vim Script

Security Score

97/100

Audited on Dec 12, 2025

No findings