Skip to content

Instantly share code, notes, and snippets.

View marcelarie's full-sized avatar
🐢
always learning

marcel marcelarie

🐢
always learning
View GitHub Profile
@marcelarie
marcelarie / gist:b3b7779e380e8c6add42e8bcb9f91511
Created September 10, 2023 22:44
Install Arch Linux ARM on M1 using UTM
Steps:
1. Dowload the ISO from https://archboot.com/#releases. Go to "2.1 ISOs - USB / CD / Virtual Machine"
2. Follow the default installation from the ISO.
ADD MORE INFO
$signatureWidth: 125px;
$signatureHeight: 54px;
:export {
signatureWidth: $signatureWidth;
signatureHeight: $signatureHeight / 1px;
}
@marcelarie
marcelarie / cmp-source-creation.lua
Created December 19, 2021 14:47
cmp source creation
local source = {}
---Source constructor.
source.new = function()
local self = setmetatable({}, { __index = source })
self.your_awesome_variable = 1
return self
end
---Return the source name for some information.