feat: .gitignore removed

fix: tests
This commit is contained in:
Max Miliano 2024-03-28 12:00:11 -03:00
parent d54aeda370
commit 54bac309d1
2 changed files with 7 additions and 1 deletions

1
.gitignore vendored
View file

@ -1 +0,0 @@
lua/solarized/utils/test.lua

View file

@ -0,0 +1,7 @@
local M = {}
function M.to_hex(decimal)
return string.format('#%06x', decimal)
end
return M