-
Notifications
You must be signed in to change notification settings - Fork 13
/
profiles.lua
38 lines (33 loc) · 1.65 KB
/
profiles.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
--[[
___ ___ ___ ___ ___
/ /\ /__/\ / /\ / /\ ___ ___ /__/\
/ /:/ \ \:\ / /:/_ / /::\ /__/\ / /\ | |::\
/ /:/ \__\:\ / /:/ /\ / /:/\:\ \ \:\ / /:/ | |:|:\
/ /:/ ___ ___ / /::\ / /:/ /:/_ / /:/ \:\ \ \:\ /__/::\ __|__|:|\:\
/__/:/ / /\ /__/\ /:/\:\ /__/:/ /:/ /\ /__/:/ \__\:\ ___ \__\:\ \__\/\:\__ /__/::::| \:\
\ \:\ / /:/ \ \:\/:/__\/ \ \:\/:/ /:/ \ \:\ / /:/ /__/\ | |:| \ \:\/\ \ \:\~~\__\/
\ \:\ /:/ \ \::/ \ \::/ /:/ \ \:\ /:/ \ \:\| |:| \__\::/ \ \:\
\ \:\/:/ \ \:\ \ \:\/:/ \ \:\/:/ \ \:\__|:| /__/:/ \ \:\
\ \::/ \ \:\ \ \::/ \ \::/ \__\::::/ \__\/ \ \:\
\__\/ \__\/ \__\/ \__\/ ~~~~ \__\/
A config switcher written in Lua by NTBBloodbath and Vhyrro.
--]]
-- Defines the profiles you want to use
local profiles = {
--[[
Here's an example:
<name_of_config> = { <path_to_config>, {
plugins = "packer", -- Where to install plugins under site/pack
preconfigure = "packer:opt" -- Whether or not to preconfigure a plugin manager for you
}
}
More in-depth information can be found in cheovim's README on GitHub.
--]]
my_config = { "~/.config/nvim.bak", {
plugins = "packer",
preconfigure = "packer",
}
},
}
-- return <name_of_config>, <list_of_profiles>
return "my_config", profiles