Has syntax, compiler, indent & theme support on Neovim.
vim.filetype.add({
extension = {
asm = "fasm",
inc = "fasm",
},
})
return {
"thetrung/green-fasml.vim",
}This also set syntax on *.asm & *.inc for FASM.
this usually need on Arch/Omarchy where colorscheme is synced by theme, add this to your init.lua :
vim.defer_fn(function()
vim.cmd("colorscheme green-ocean")
end, 50)fasm syntax : https://github.com/fedorenchik/fasm.vim
colorscheme : https://github.com/thetrung/green-fasm.vim
