28 lines
385 B
Lua
28 lines
385 B
Lua
local PROFILES = {
|
|
['HOME'] = {
|
|
'python',
|
|
'nix',
|
|
'go',
|
|
'rust',
|
|
'markdown',
|
|
'bash',
|
|
'docker',
|
|
'lua',
|
|
},
|
|
['DEFAULT'] = {
|
|
'python',
|
|
'markdown',
|
|
'bash',
|
|
'docker',
|
|
'lua',
|
|
},
|
|
}
|
|
|
|
local Profile = {}
|
|
Profile.Languages = function()
|
|
local profile = PROFILES[os.getenv 'NVIM_PROFILE' or 'DEFAULT']
|
|
return profile
|
|
end
|
|
|
|
return Profile
|