Has syntax, compiler, indent & theme support on Neovim.
Add following to your autocmds.lua or init.lua on NeoVim :
autocmd BufReadPre *.asm let g:asmsyntax = "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)
