-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
30 lines (29 loc) · 749 Bytes
/
Copy pathinit.lua
File metadata and controls
30 lines (29 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
require("config.lazy")
require("opts_and_remaps")
-------- below is my own learning shenanigans--------
-- local greeter_service = require('random.greet')
-- greeter_service.greet('Arman')
--
-- local lsp = require('random.my_module')
--
-- lsp.show_valid_lsp_languages()
--
-- -- check if your desired lsp exists in the list
-- -- lsp.checkMyLsp("python", "typescript", "lua")
--
-- -- add two 3 vectors
-- local vector = require('random.dunder')
-- local v1 = setmetatable({ 1, 2, 3 }, vector)
-- local v2 = setmetatable({ 4, 5, 6 }, vector)
--
-- local res = v1 + v2
--
-- for index, value in ipairs(res) do
-- print(index, value)
-- end
--
-- local fib_mt = require('random.fib')
--
-- local fib = setmetatable({}, fib_mt)
--
-- print(fib[2])