Files
dotfiles/nvim/.config/nvim/after/ftplugin/ftl.lua
vx-clutch 25a5b7d180 save
2025-01-04 22:31:25 -05:00

18 lines
475 B
Lua

local fn = vim.fn
fn.matchadd("Comment", ";;.*")
fn.matchadd("Number", "\\v[-+]?[0-9]+") -- Matches integers
fn.matchadd("Float", "\\v[-+]?[0-9]*\\.[0-9]+") -- Matches floats
fn.matchadd("String", '".*"')
fn.matchadd("Type", "\\v\\<\\(int|string\\)\\>")
fn.matchadd(
"Operator",
"\\v(\\+\\+|--|==|!=|<=|>=|<|>|\\|\\||&&|!|~|\\^|\\||&|=|<<|>>|\\+=|-=|\\*=|/=|%=|<<=|>>=|&=|\\|=|\\^=|\\+|-|\\*|/|%)"
)
fn.matchadd("Keyword", "SYSCALL")
fn.matchadd("Function", "exit")