-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.lua
62 lines (54 loc) · 1.43 KB
/
init.lua
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
--- Get global file path by type
---@param ext string
---@return string
local function get_global_file_by_type(ext)
local state_path = vim.fn.stdpath('state')
local path = state_path .. '/code-runner'
-- Create code-runner folder if it does not exist
if vim.fn.isdirectory(path) == 0 then
vim.fn.mkdir(path)
end
return string.format('%s/code-pad.%s', path, ext)
end
--- Default configuration for quick-code-runner.nvim
local default_config = {
debug = false,
file_types = {
javascript = { 'bun run' },
typescript = { 'bun run' },
python = {
'python3 -u',
},
go = {
'go run',
},
lua = {
'lua',
},
},
global_files = {
javascript = get_global_file_by_type('js'),
typescript = get_global_file_by_type('ts'),
python = get_global_file_by_type('py'),
go = get_global_file_by_type('go'),
lua = get_global_file_by_type('lua'),
},
-- Center the code pad
position = '50%',
-- Default size of the code pad
size = {
width = '50%',
height = '50%',
},
}
--- Global configuration for entire plugin, easy to access from anywhere
_QUICK_CODE_RUNNER_CONFIG = default_config
local M = {}
--- Setup quick-code-runner.nvim
---@param opts (table | nil)
function M.setup(opts)
local options = opts or default_config
_QUICK_CODE_RUNNER_CONFIG = vim.tbl_extend('force', _QUICK_CODE_RUNNER_CONFIG, options)
require('quick-code-runner.main').setup()
end
return M