The .60 Markup Language syntax highlight for Vim
November 27, 2021 · View on GitHub
This is basic implementation of The .60 Markup Language syntax
highlight for Vim.

Install
Use your favorite package manager, or install it manually.
vim-plug
Plug 'RustemB/sixtyfps-vim'
packer.nvim
use 'RustemB/sixtyfps-vim'
LSP
You can also setup LSP using your favorite LSP client for vim or neovim
Install LSP using cargo
cargo install sixtyfps-lsp
Install LSP for ArchLinux from AUR (e.g. using paru)
paru -S sixtyfps-lsp
Setup LSP
NeoVim (>=0.5) using built-in lsp
- install
neovim/nvim-lspconfigusing your fav package manager - add to your lua config
require'lspconfig'.sixtyfps.setup{}
or to your viml config
lua << EOF
require'lspconfig'.sixtyfps.setup{}
EOF