Basic fram language support for Neovim. Includes a filetype, LSP config, and a tree-sitter grammar.
- Neovim 0.11 or newer
lazy.nvimor another plugin manager- (optional)
nvim-treesitterwith thehighlightmodule enabled it you want to use syntax highlighting
Add the following to your plugin spec:
{
'Brychlikov/fram.nvim',
name = 'vimplugin-fram.nvim',
dependencies = { 'nvim-treesitter/nvim-treesitter' },
config = function()
require('fram').setup()
vim.lsp.enable('framls')
end,
},